Files
chatlog_alpha/main.go
lx1056758714-glitch 3d04a7f3eb 同步本地代码
2025-12-13 17:30:38 +08:00

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()
}