mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-06-09 22:12:07 +00:00
12 lines
179 B
Go
12 lines
179 B
Go
package main
|
|
|
|
import (
|
|
_ "time/tzdata" // embed IANA timezone database for containers without tzdata
|
|
|
|
"github.com/nextlevelbuilder/goclaw/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|