summaryrefslogtreecommitdiff
path: root/md5sum.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-25 00:39:14 -0600
committerJeff Carr <[email protected]>2024-01-25 00:39:14 -0600
commit41fe4a4659d50d70a835224405490588019d24ff (patch)
treedd6677fb17d11a4233568fddf0d3a141434bba10 /md5sum.go
parente24c2c2eb3feb5083a74a9b2cb396bcbcb0ac52d (diff)
new homev0.13.0
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'md5sum.go')
-rw-r--r--md5sum.go12
1 files changed, 7 insertions, 5 deletions
diff --git a/md5sum.go b/md5sum.go
index 2d309d0..05c4dba 100644
--- a/md5sum.go
+++ b/md5sum.go
@@ -1,10 +1,12 @@
package shell
-import "crypto/md5"
-import "encoding/hex"
-import "log"
-import "io"
-import "os"
+import (
+ "crypto/md5"
+ "encoding/hex"
+ "io"
+ "log"
+ "os"
+)
func hash_file_md5(filePath string) (string, error) {
var returnMD5String string