feignhttp-codegen 0.6.1

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

// error: metadata url not specified
//    |  #[feign(aaa = "http://xxx")]
//    |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

#[feign(aaa = "http://xxx")]
pub trait Http {}

fn main() {}