23 lines
654 B
Swift
23 lines
654 B
Swift
//
|
|
// File.swift
|
|
// NetworkApi
|
|
//
|
|
// Created by User on 27.05.2025.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct URLS {
|
|
public static let baseURL = "https://api.matule.ru/api/collections"
|
|
static let register = "users/records"
|
|
static let getUserInfo = "users/records/"
|
|
static let updateUserInfo = "users/records/"
|
|
static let login = "users/auth-with-password"
|
|
static let getIdToken = "_authOrigins/records"
|
|
static let deleteUser = "_authOrigins/records/"
|
|
static let news = "news/records"
|
|
static let infoProduct = "products/records/"
|
|
static let products = "products/records"
|
|
static let projects = "project/records"
|
|
}
|