mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 11:22:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			244 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			244 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	rpcMessageCMS "Open_IM/internal/rpc/admin_cms"
 | 
						|
	"flag"
 | 
						|
)
 | 
						|
 | 
						|
func main() {
 | 
						|
	rpcPort := flag.Int("port", 11000, "rpc listening port")
 | 
						|
	flag.Parse()
 | 
						|
	rpcServer := rpcMessageCMS.NewAdminCMSServer(*rpcPort)
 | 
						|
	rpcServer.Run()
 | 
						|
}
 | 
						|
 |