5 lines
319 B
Bash
Executable File
5 lines
319 B
Bash
Executable File
#!/bin/bash
|
|
TOKEN=$(sqlite3 /Users/maddy/Projects/Kifi/kifi-api/kifi.db 'select token from some_table limit 1' 2>/dev/null)
|
|
# Let's just create a test controller endpoint that doesn't need auth, or use JWT generator if I had one.
|
|
# Wait, I don't have a valid JWT. I can just write a quick test inside WalletController!
|