Refactor go packages

This commit is contained in:
Manuel de Brito Fontes 2017-10-06 17:11:04 -03:00
parent 2139ee85e7
commit 1e7489927c
111 changed files with 173 additions and 306 deletions

19
file/file.go Normal file
View file

@ -0,0 +1,19 @@
package file
import (
"crypto/sha1"
"encoding/hex"
"io/ioutil"
)
// SHA1 returns the SHA1 of a file.
func SHA1(filename string) string {
hasher := sha1.New()
s, err := ioutil.ReadFile(filename)
if err != nil {
return ""
}
hasher.Write(s)
return hex.EncodeToString(hasher.Sum(nil))
}