13 lines
185 B
Go
Raw Normal View History

2023-10-08 15:59:42 +07:00
package studio
type StudioStatus string
const (
2024-06-03 14:40:50 +07:00
Active StudioStatus = "active"
Inactive StudioStatus = "inactive"
2023-10-08 15:59:42 +07:00
)
func (b StudioStatus) toString() string {
return string(b)
}