mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
15 lines
161 B
Go
15 lines
161 B
Go
package main
|
|
|
|
import (
|
|
"Open_IM/internal/msg_transfer/logic"
|
|
"sync"
|
|
)
|
|
|
|
func main() {
|
|
var wg sync.WaitGroup
|
|
wg.Add(1)
|
|
logic.Init()
|
|
logic.Run()
|
|
wg.Wait()
|
|
}
|