summary refs log tree commit diff stats
path: root/pkg/cetus/cetus.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/cetus/cetus.go')
-rw-r--r--pkg/cetus/cetus.go15
1 files changed, 1 insertions, 14 deletions
diff --git a/pkg/cetus/cetus.go b/pkg/cetus/cetus.go
index c3f86cb..17fd906 100644
--- a/pkg/cetus/cetus.go
+++ b/pkg/cetus/cetus.go
@@ -5,22 +5,9 @@ import (
 	"log"
 )
 
-var version string = "v0.4.11"
+var version string = "v0.5.0"
 
 // Version prints cetus version
 func Version() {
 	fmt.Printf("Cetus %s\n", version)
 }
-
-// PrintPath prints the path passed
-func PrintPath(path string) {
-	fmt.Println(path)
-}
-
-// ErrChk logs the context & error
-func ErrChk(ctx string, err error) {
-	if err != nil {
-		log.Println(ctx)
-		log.Fatal(err)
-	}
-}