// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation
import Get
import URLQueryEncoder

extension Paths {
    public static var contests: Contests {
        Contests(path: "/api/contests")
    }

    public struct Contests {
        /// Path: `/api/contests`
        public let path: String

        /// Get All Contests
        public var get: Request<GenAPI.AllContestsResponse> {
            Request(path: path, method: "GET", id: "studio_api_contests_api_get_all_contests")
        }
    }
}
