mirror of
https://github.com/make-42/hayai.git
synced 2024-11-10 04:11:37 +01:00
12 lines
104 B
Go
12 lines
104 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"hayai/config"
|
||
|
"hayai/wolfx"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
config.Init()
|
||
|
wolfx.Listen()
|
||
|
}
|