9 lines
102 B
Go
9 lines
102 B
Go
package usecasehelper
|
|
|
|
type MWType string
|
|
|
|
const (
|
|
MWTPre MWType = "Pre"
|
|
MWTPost MWType = "Post"
|
|
)
|