jynx/backend/common/common.go

10 lines
166 B
Go
Raw Permalink Normal View History

2023-05-29 21:21:50 +00:00
package common
import "time"
type Server struct {
Name string `json:"name"`
Created time.Time `json:"started_at"`
Deployed bool `json:"deployed"`
}