This commit is contained in:
Trey t
2023-07-02 16:37:45 -05:00
parent 939ea16716
commit fbc1ada8c9
14 changed files with 535 additions and 24 deletions

View File

@@ -8,7 +8,7 @@
import Foundation
enum BaseURLs: String {
case local = "http://127.0.0.1:8000/"
case local = "http://127.0.0.1:8000"
case dev = "https://dev.werkout.fitness"
}
@@ -37,7 +37,7 @@ protocol Postable: Fetchable {
extension Fetchable {
var baseURL: String {
BaseURLs.dev.rawValue
BaseURLs.local.rawValue
}
var attachToken: Bool {