summaryrefslogtreecommitdiff
path: root/src/server.rs
AgeCommit message (Collapse)AuthorFilesLines
2021-03-03fix: don't allow unknown fields in configuration filesLars Wirzenius1-0/+1
2021-03-03refactor: rename Config, ConfigError to show they are for serverLars Wirzenius1-8/+8
2021-02-16refactor: move server config into src/server.rsLars Wirzenius1-0/+46
2021-02-04refactor: have per-module error enumsLars Wirzenius1-1/+1
This means that a function that parses step bindings can't return an error that the document is missing a title. Such an error return would be nonsensical, and we use the Rust type system to prevent it, at a small cost of being a bit verbose. Additional benefit is that the library portion of Obnam doesn't return anyhow::Result values anymore.
2020-10-14refactor: rename Chunk to DataChunkLars Wirzenius1-3/+3
2020-09-18use to_string method for ChunkId instead of format! macroLars Wirzenius1-1/+1
2020-09-18feat: add a rudimentary chunk server main programLars Wirzenius1-3/+9
Also, add an initial subplot to document and verify acceptance criteria.
2020-09-18feat: representations of responses for server operationsLars Wirzenius1-0/+78