mirror of
https://github.com/NotAShelf/tct.git
synced 2025-10-02 15:03:48 +00:00
10 lines
153 B
Go
10 lines
153 B
Go
package main
|
|
|
|
import "notashelf.dev/tct/cmd"
|
|
|
|
var version = "dev" // will be set by build process
|
|
|
|
func main() {
|
|
cmd.Version = version
|
|
cmd.Execute()
|
|
}
|