1
0
mirror of https://github.com/restic/restic.git synced 2024-06-29 08:10:52 +02:00

Remove unused 'ram' tool

This commit is contained in:
Alexander Neumann 2015-03-22 21:03:25 +01:00
parent 0ed2a066a0
commit 53ad706c6d

View File

@ -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)
}
}