We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02cff98 commit e58e133Copy full SHA for e58e133
README.md
@@ -49,6 +49,7 @@ implementation 'cn.numeron:http:latest_version'
49
* 示例:
50
```kotlin
51
/** 此接口下所有的方法均通过指定的url地址访问,优先级低于方法上的注解 */
52
+ @Url("http://192.168.1.111:8081/")
53
interface LoginApi {
54
55
/** 指定此方法在调用时,访问服务器的8080端口 */
@@ -62,4 +63,4 @@ implementation 'cn.numeron:http:latest_version'
62
63
suspend fun logout(@Body payload: LoginPayload): LogoutResponse
64
65
}
- ```
66
+ ```
0 commit comments