라이브 메인 페이지

This commit is contained in:
Yu Sung
2023-08-10 12:32:20 +09:00
parent 2456c897c3
commit f8bab4c232
42 changed files with 1873 additions and 2 deletions

View File

@@ -0,0 +1,48 @@
//
// EventApi.swift
// SodaLive
//
// Created by klaus on 2023/08/09.
//
import Foundation
import Moya
enum EventApi {
case getEvents
case getEventPopup
}
extension EventApi: TargetType {
var baseURL: URL {
return URL(string: BASE_URL)!
}
var path: String {
switch self {
case .getEvents:
return "/event"
case .getEventPopup:
return "/event/popup"
}
}
var method: Moya.Method {
switch self {
case .getEvents, .getEventPopup:
return .get
}
}
var task: Task {
switch self {
case .getEvents, .getEventPopup:
return .requestPlain
}
}
var headers: [String : String]? {
return ["Authorization": "Bearer \(UserDefaults.string(forKey: UserDefaultsKey.token))"]
}
}