We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8bd4b2 commit 32c81abCopy full SHA for 32c81ab
app.php
@@ -10,28 +10,5 @@
10
Login::get();
11
});
12
13
-$route->post('/v1/register', function() {
14
- Register::get();
15
-});
16
-
17
-$route->get('/v1/transactions', function() {
18
- Wallet::getTransactions();
19
20
21
-$route->post('/v1/deposit', function() {
22
- Wallet::deposit();
23
24
25
-$route->post('/v1/withdraw', function() {
26
- Wallet::withdraw();
27
28
29
-$route->post('/v1/transfer', function() {
30
- Wallet::transfer();
31
32
33
-$route->get('/v1/balance', function() {
34
- Wallet::getBalance();
35
36
37
$route->submit();
0 commit comments