Skip to content

Commit

Permalink
add status type to the const
Browse files Browse the repository at this point in the history
  • Loading branch information
Chystik committed Nov 2, 2023
1 parent b982466 commit 52baf8b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions internal/models/order.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import (
type Status string

const (
Invalid = "INVALID"
New = "NEW"
Registered = "REGISTERED"
Processing = "PROCESSING"
Processed = "PROCESSED"
Invalid Status = "INVALID"
New Status = "NEW"
Registered Status = "REGISTERED"
Processing Status = "PROCESSING"
Processed Status = "PROCESSED"
)

type (
Expand Down

0 comments on commit 52baf8b

Please sign in to comment.