feignhttp-codegen 0.5.2

FeignHTTP macro support
Documentation
1
2
3
4
5
6
7
8
9
10
use feignhttp_codegen::get;

// error: unsupported param parameter: `a: Vec < String >`
//    |  pub async fn send_get(#[param] a: Vec<String>) -> Result<String> {}
//    |                                 ^^^^^^^^^^^^^^

#[get("http://xxx")]
pub async fn send_get(#[param] a: Vec<String>) -> Result<String> {}

fn main() {}