[+] Add /user/delete to the list

This commit is contained in:
Hykilpikonna
2021-01-12 13:49:49 -05:00
parent 9aca5480a8
commit 0fde708c24
+2 -1
View File
@@ -18,7 +18,8 @@ struct API<T>
/// Class to store static API endpoints
class APIs
{
static let register = API<User>(loc: "/user/register")
static let register = API<String>(loc: "/user/register")
static let delete = API<String>(loc: "/user/delete")
private init() {}
}