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