flip_store_github.h 452 B

12345678910111213
  1. #pragma once
  2. #include <flip_store.h>
  3. // Helper to download a file from Github and save it to the storage
  4. bool flip_store_download_github_file(
  5. FlipperHTTP *fhttp,
  6. const char *filename,
  7. const char *author,
  8. const char *repo,
  9. const char *link);
  10. bool flip_store_get_github_contents(FlipperHTTP *fhttp, const char *author, const char *repo);
  11. bool flip_store_parse_github_contents(char *file_path, const char *author, const char *repo);