badalsahani's picture
feat: chroma initial deploy
287a0bc
raw
history blame contribute delete
240 Bytes
package model
import "github.com/chroma/chroma-coordinator/internal/types"
type Tenant struct {
Name string
}
type CreateTenant struct {
Name string
Ts types.Timestamp
}
type GetTenant struct {
Name string
Ts types.Timestamp
}