9 lines
115 B
Go
9 lines
115 B
Go
|
package constants
|
||
|
|
||
|
type PayMethod int64
|
||
|
|
||
|
const (
|
||
|
PAYMETHOD_STRIPE PayMethod = 1
|
||
|
PAYMETHOD_PAYPAL PayMethod = 2
|
||
|
)
|