Skip to content

Commit

Permalink
fix: pet constant
Browse files Browse the repository at this point in the history
  • Loading branch information
bookpanda committed Dec 21, 2023
1 parent b8f91d1 commit d865d33
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/constant/pet/pet.constant.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package pet

type Gender string
type Gender int

const (
MALE = "male"
FEMALE = "female"
MALE = 1
FEMALE = 2
)

type Status string
type Status int

const (
ADOPTED = "adopted"
FINDHOME = "findhome"
ADOPTED = 1
FINDHOME = 2
)

0 comments on commit d865d33

Please sign in to comment.