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

13 lines
185 B
Go

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