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

import (
	"fmt"
)

var version string = "v0.5.0"

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