feat: init
This commit is contained in:
parent
7688020b52
commit
e8b8c10faa
33 changed files with 6027 additions and 0 deletions
17
internal/ds/ds.go
Normal file
17
internal/ds/ds.go
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
package ds
|
||||
|
||||
import "github.com/google/uuid"
|
||||
|
||||
type Status string
|
||||
|
||||
const (
|
||||
StatusActive Status = "active"
|
||||
StatusOffline Status = "offline"
|
||||
StatusBusy Status = "busy"
|
||||
)
|
||||
|
||||
type Station struct {
|
||||
ID uuid.UUID
|
||||
Slug string
|
||||
Status Status
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue