rebrand oc-datacenter in oc-compute

This commit is contained in:
mr
2024-11-07 11:36:31 +01:00
parent 4a17d0c07d
commit 2d249f38ff
2 changed files with 33 additions and 8 deletions

View File

@@ -29,15 +29,15 @@ func (dma StorageType) ToArgo() string {
}
// enum of a data type
type StorageType string
type StorageType int
const (
FILE = "file"
STREAM = "stream"
API = "api"
DATABASE = "database"
S3 = "s3"
MEMORY = "memory"
HARDWARE = "hardware"
FILE = iota
STREAM
API
DATABASE
S3
MEMORY
HARDWARE
)
/*