7 lines
136 B
Bash
7 lines
136 B
Bash
|
|
#!/usr/bin/sh
|
||
|
|
|
||
|
|
curl -v http://localhost:8085/register \
|
||
|
|
-d email="test@example.org" \
|
||
|
|
-d handle="test" \
|
||
|
|
-d password="test"
|