aditya.siregar 67f1dbc850 init project
2024-05-28 14:14:55 +07:00

13 lines
185 B
Go

package studio
type StudioStatus string
const (
Active StudioStatus = "Active"
Inactive StudioStatus = "Inactive"
)
func (b StudioStatus) toString() string {
return string(b)
}