feat: space card for spaces list

This commit is contained in:
juancwu 2026-04-11 15:38:20 +00:00
commit fec29bcc0e
7 changed files with 92 additions and 8 deletions

View file

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