stoically / web-service-rs-template

simple web service template that tries to follow best practices in terms of cli, crates, patterns, configuration and file structure.
MIT License
17 stars 1 forks source link

Setting axum Router state not early #8

Open FlixCoder opened 1 year ago

FlixCoder commented 1 year ago

https://docs.rs/axum/latest/axum/struct.Router.html#returning-routers-with-states-from-functions suggests setting the state outside of the router-creation-function.

FlixCoder commented 1 year ago

Though I guess the last thing about performance makes me think it might actually be fine the way you did it..