summary refs log blame commit diff stats
path: root/pkg/cetus/cetus.go
blob: c22c7426cd241e84e75b699f55387bbf8e252833 (plain) (tree)
1
2
3
4
5
6
7
8
9
             
 
            
 
                             
 

                               
                                         
 




                                   
package cetus

import "fmt"

var version string = "v0.4.6"

// Version prints cetus version
func Version() {
	fmt.Printf("Cetus %s\n", version)
}

// PrintPath prints the path passed
func PrintPath(path string) {
	fmt.Println(path)
}