This commit is contained in:
2024-10-17 09:21:19 -04:00
commit 2c888d68bf
12 changed files with 394 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package api.endpoints;
public class Routes {
public static String BASE_URL = "https://petstore.swagger.io/v2/";
public static String POST_URL = BASE_URL + "user/";
public static String GET_URL = BASE_URL + "user/{username}";
public static String UPDATE_URL = BASE_URL + "user/{username}";
public static String DELETE_URL = BASE_URL + "user/{username}";
}