mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 03:13:15 +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()
 | 
						|
}
 |