10 lines
166 B
Go
10 lines
166 B
Go
package common
|
|
|
|
import "time"
|
|
|
|
type Server struct {
|
|
Name string `json:"name"`
|
|
Created time.Time `json:"started_at"`
|
|
Deployed bool `json:"deployed"`
|
|
}
|