mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +00:00 
			
		
		
		
	- Renamed host templates to nginx templates - Generate upstream templates - Better nginx error reporting when reloading - Use tparse for golang test reporting
		
			
				
	
	
		
			16 lines
		
	
	
		
			381 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			381 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package upstream
 | |
| 
 | |
| import (
 | |
| 	"npm/internal/model"
 | |
| )
 | |
| 
 | |
| // ListResponse is the JSON response for this list
 | |
| type ListResponse struct {
 | |
| 	Total  int            `json:"total"`
 | |
| 	Offset int            `json:"offset"`
 | |
| 	Limit  int            `json:"limit"`
 | |
| 	Sort   []model.Sort   `json:"sort"`
 | |
| 	Filter []model.Filter `json:"filter,omitempty"`
 | |
| 	Items  []Model        `json:"items,omitempty"`
 | |
| }
 |