api for initial widgets

This commit is contained in:
Gabe Farrell 2023-04-10 22:39:51 -04:00
parent 36f751a69f
commit 4aa8a2f822
14 changed files with 864 additions and 11 deletions

8
money/currency.go Normal file
View file

@ -0,0 +1,8 @@
package money
type Currency string
const (
USD Currency = "USD"
CAD = "CAD"
)