rustic_server 0.4.4

rustic server - a REST server built in rust to use with rustic and restic.
Documentation
---
source: src/acl.rs
expression: acl
---
Acl {
    private_repo: true,
    append_only: true,
    repos: {
        "all": RepoAcl(
            {
                "bob": Modify,
                "paul": Read,
                "sam": Append,
            },
        ),
        "bob": RepoAcl(
            {
                "bob": Modify,
            },
        ),
        "sam": RepoAcl(
            {
                "bob": Read,
                "sam": Append,
            },
        ),
    },
}