#[derive(Tags)] { // Attributes available to this derive: #[oai] }
Define an OpenAPI Tags.
use poem_openapi::Tags; #[derive(Tags)] enum ApiTags { /// Operations about user User, /// Operations about pet Pet, }