initial commit

This commit is contained in:
Bastian de Byl
2023-02-23 00:05:01 -05:00
parent 1b299cc3f4
commit 6849fad720
6 changed files with 189 additions and 0 deletions

13
snipcart/orderstatus.go Normal file
View File

@@ -0,0 +1,13 @@
package snipcart
type OrderStatus string
const (
Processed OrderStatus = "Processed"
Disputed = "Disputed"
Shipped = "Shipped"
Delivered = "Delivered"
Pending = "Pending"
Cancelled = "Cancelled"
Dispatched = "Dispatched"
)