๐Ÿ“ฆ darkskygit / cfkvfs

โ˜… 1 stars โ‘‚ 0 forks ๐Ÿ‘ 1 watching โš–๏ธ GNU Affero General Public License v3.0
๐Ÿ“ฅ Clone https://github.com/darkskygit/cfkvfs.git
HTTPS git clone https://github.com/darkskygit/cfkvfs.git
SSH git clone git@github.com:darkskygit/cfkvfs.git
CLI gh repo clone darkskygit/cfkvfs
DarkSky DarkSky readme 370e05d 4 years ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“ src
๐Ÿ“„ .gitignore
๐Ÿ“„ Cargo.toml
๐Ÿ“„ LICENSE
๐Ÿ“„ README.md
๐Ÿ“„ README.md

Cache files with Cloudflare kv / LRU cache

let cache_handler = CfKvFs::builder("https://example.com", "path")
        .auth("Bearer 12345")
        .table("test1")
        .build()
        .unwrap();
    let data = cache_handler.get_blob("test.bin").unwrap();