diff options
Diffstat (limited to 'web/main.c')
-rw-r--r-- | web/main.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/web/main.c b/web/main.c deleted file mode 100644 index e14ebe6..0000000 --- a/web/main.c +++ /dev/null @@ -1,32 +0,0 @@ -#include <string.h> -#include <stdio.h> -#include <shopify.h> - -int main(int argc, char *argv[]) -{ - const size_t app_dir_len = strlen(APP_DIR); - static const char *scope_rel = "/shopify.app.toml"; - char scope[app_dir_len + strlen(scope_rel) + 1]; - sprintf(scope, "%s%s", APP_DIR, scope_rel); - static const char *index_rel = "/web/frontend/index.html"; - char index[app_dir_len + strlen(index_rel) + 1]; - sprintf(index, "%s%s", APP_DIR, index_rel); - shopify_app(API_KEY, API_SECRET_KEY, APP_URL, "/auth", APP_ID, scope, - index, (struct shopify_api[]){ - { - "/products", - "GET", - shopify_graphql, - "{"\ - " productCreate() {"\ - " product {"\ - " id"\ - " }"\ - " }"\ - "}" - }, - {} - } - ); - return 0; -} |