This commit is contained in:
Shen Junzheng
2025-03-19 13:11:09 +08:00
parent 160040f3e1
commit 78cce92ce3
70 changed files with 10134 additions and 1 deletions
+12
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()
}