mirror of
https://github.com/pikami/cosmium.git
synced 2025-02-03 06:27:59 +00:00
14 lines
168 B
Go
14 lines
168 B
Go
package repositories
|
|
|
|
type Database struct {
|
|
ID string `json:"id"`
|
|
}
|
|
|
|
type RepositoryStatus int
|
|
|
|
const (
|
|
StatusOk = 1
|
|
StatusNotFound = 2
|
|
Conflict = 3
|
|
)
|