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