mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 13:27:21 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			207 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			207 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package controllers
 | 
						|
 | 
						|
// PaginatedResponse is a structure for returning a total count with results.
 | 
						|
type PaginatedResponse struct {
 | 
						|
	Total   int         `json:"total"`
 | 
						|
	Results interface{} `json:"results"`
 | 
						|
}
 |