mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 05:17:27 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			231 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			231 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package models
 | 
						|
 | 
						|
import "time"
 | 
						|
 | 
						|
// IPAddress is a simple representation of an IP address.
 | 
						|
type IPAddress struct {
 | 
						|
	IPAddress string    `json:"ipAddress"`
 | 
						|
	Notes     string    `json:"notes"`
 | 
						|
	CreatedAt time.Time `json:"createdAt"`
 | 
						|
}
 |