func ImportHash()

in toutoumomoma.go [237:244]


func ImportHash(path string) (hash []byte, imports []string, err error) {
	f, err := Open(path)
	if err != nil {
		return nil, nil, err
	}
	defer f.Close()
	return f.ImportHash()
}