elif-http-derive 0.2.11

Derive macros for elif-http declarative routing and controller system
Documentation
1
2
3
4
5
6
7
8
9
//! Test that controller macro without string argument fails

use elif_http_derive::controller;

// This should fail - controller macro requires a string literal
#[controller(invalid_path)]
pub struct BadController;

fn main() {}