mirror of
https://github.com/zhigang1992/swift-request.git
synced 2026-01-12 22:52:42 +08:00
9 lines
200 B
Swift
9 lines
200 B
Swift
import SwiftRequest
|
|
import Foundation
|
|
|
|
@Service(resource: "sample")
|
|
protocol SampleService {
|
|
@POST("hello/{id}/{limit}")
|
|
func hello(@Path id: String, @Path limit: Int) async throws -> [Int]
|
|
}
|