initial commit

This commit is contained in:
2026-04-02 01:55:44 -04:00
commit e905f1b003
7 changed files with 343 additions and 0 deletions

14
notes.md Normal file
View File

@@ -0,0 +1,14 @@
## Example query
```
curl -X POST http://localhost:8080/account/new \
-H "Content-Type: application/json" \
-d '{
"email":"john@example.com",
"first_name":"John",
"last_name":"Smith",
"address":"123 Main St",
"country_code":"US",
"password":"letmein"
}'
```