summaryrefslogtreecommitdiff
path: root/core/gotham_state.rs
AgeCommit message (Collapse)Author
2020-12-09test(core): type aliases in OpState (#8653)Bartek IwaƄczuk
This commit adds a test case to core/gotham_state.rs that shows that type aliases can't be used reliably. Instead wrapper types should be used.
2020-09-21chore: add copyright (#7593)tokiedokie
2020-09-10Use gotham-like state for ops (#7385)Ryan Dahl
Provides a concrete state type that can be dynamically added. This is necessary for op crates. * renames BasicState to OpState * async ops take `Rc<RefCell<OpState>>` * sync ops take `&mut OpState` * removes `OpRegistry`, `OpRouter` traits * `get_error_class_fn` moved to OpState * ResourceTable moved to OpState