mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 03:13:15 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			229 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			229 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package cms_api_struct
 | 
						|
 | 
						|
type AdminLoginRequest struct {
 | 
						|
	AdminName string `json:"admin_name" binding:"required"`
 | 
						|
	Secret string `json:"secret" binding:"required"`
 | 
						|
}
 | 
						|
 | 
						|
type AdminLoginResponse struct {
 | 
						|
	Token string `json:"token"`
 | 
						|
} |