mirror of
https://github.com/eolinker/apinto
synced 2026-04-23 00:17:04 +08:00
15 lines
169 B
Go
15 lines
169 B
Go
package model
|
|
|
|
type Server struct {
|
|
Id int64
|
|
Name string
|
|
Age int
|
|
Email string
|
|
}
|
|
|
|
type ComplexServer struct {
|
|
Addr string
|
|
//Time time.Time
|
|
Server Server
|
|
}
|