This commit is contained in:
Shen Junzheng
2025-03-12 01:19:35 +08:00
parent 160040f3e1
commit 78cce92ce3
70 changed files with 10134 additions and 1 deletions

12
main.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"log"
"github.com/sjzar/chatlog/cmd/chatlog"
)
func main() {
log.SetFlags(log.LstdFlags | log.Lshortfile)
chatlog.Execute()
}