This commit is contained in:
lzx
2025-10-21 10:58:58 +08:00
parent a0689dbb09
commit 03c5430d98
9 changed files with 728 additions and 560 deletions

View File

@@ -1,7 +1,12 @@
package main
import server "m2pool-payment/internal"
import (
"flag"
server "m2pool-payment/internal"
)
func main() {
server.Start()
msgKey := flag.String("key", "m2pool", "通信密钥")
flag.Parse()
server.Start(*msgKey)
}