mirror of
https://github.com/octoleo/restic.git
synced 2024-12-02 01:48:30 +00:00
Remove unused 'ram' tool
This commit is contained in:
parent
0ed2a066a0
commit
53ad706c6d
@ -1,26 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"os"
|
|
||||||
|
|
||||||
"github.com/restic/restic"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
max := int(1e6)
|
|
||||||
nodes := make([]*restic.Node, 0, max)
|
|
||||||
|
|
||||||
fi, err := os.Lstat("main.go")
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
for i := 0; i < max; i++ {
|
|
||||||
node, err := restic.NodeFromFileInfo("main.go", fi)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
nodes = append(nodes, node)
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user