From 22e0ff0998a81e3abc5eff03affd22f0e60b50b1 Mon Sep 17 00:00:00 2001 From: benjaminramey Date: Wed, 5 Aug 2020 13:38:02 -0500 Subject: [PATCH] wip --- README.md | 4 ++-- credentials.json => resources/credentials.json | 0 src/google_photos_downloader/googleapi.clj | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) rename credentials.json => resources/credentials.json (100%) create mode 100644 src/google_photos_downloader/googleapi.clj diff --git a/README.md b/README.md index 7378891..2c8aef0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# google-photos-downloader +# Google Photos Downloader -FIXME: description +Downloads all of your Google Photos to a directory. ## Installation diff --git a/credentials.json b/resources/credentials.json similarity index 100% rename from credentials.json rename to resources/credentials.json diff --git a/src/google_photos_downloader/googleapi.clj b/src/google_photos_downloader/googleapi.clj new file mode 100644 index 0000000..4560348 --- /dev/null +++ b/src/google_photos_downloader/googleapi.clj @@ -0,0 +1,7 @@ +(ns google-photos-downloader.googleapi + (:require [clj-http.client :as client])) + +(defn getAuthToken + "Gets a token from the Google OAuth" + [] + ()) \ No newline at end of file