mirror of
https://github.com/teest114514/chatlog_alpha.git
synced 2026-03-20 17:07:50 +08:00
13 lines
155 B
Go
13 lines
155 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/sjzar/chatlog/cmd/chatlog"
|
|
)
|
|
|
|
func main() {
|
|
log.SetFlags(log.LstdFlags | log.Lshortfile)
|
|
chatlog.Execute()
|
|
}
|