14 lines
152 B
Go
14 lines
152 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.smsvc.net/pomodoro/GoTomato/cmd/server"
|
|
)
|
|
|
|
var Version = ""
|
|
|
|
func main() {
|
|
fmt.Println(Version)
|
|
server.Start()
|
|
}
|