go fmt
Go Release / build-and-release (pull_request) Successful in 5s
Go CI / Test and Lint (pull_request) Successful in 7s
Go CI / Test and Lint (push) Successful in 17s

This commit is contained in:
2026-05-28 20:01:14 -04:00
parent 6d52867485
commit 548a8eaa07
+2 -3
View File
@@ -6,9 +6,8 @@ import (
"github.com/google/uuid" "github.com/google/uuid"
) )
type Organization struct { type Organization struct {
Id uuid.UUID `json:"id"` Id uuid.UUID `json:"id"`
Name string `json:"name"` Name string `json:"name"`
Created *time.Time `json:"created,omitempty"` Created *time.Time `json:"created,omitempty"`
} }