summaryrefslogtreecommitdiff
path: root/session.h
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-09-18 21:14:36 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-09-18 21:14:36 +0800
commit7a47bb74f8cf5780200126deb010df77f0090a37 (patch)
treecf86e156f0d5b0fa1742a0e7b443a562f87d9d8a /session.h
parent20232131dbb00468fa55df70916db1abc5a720fb (diff)
Move MHD access handler to the library
so the code on the app side is much simpler. Also prepare for accessing the GraphQL Admin API.
Diffstat (limited to 'session.h')
-rw-r--r--session.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/session.h b/session.h
index 9c850bf..e14f976 100644
--- a/session.h
+++ b/session.h
@@ -1,6 +1,6 @@
-static struct session {
+struct shopify_session {
char *shop;
char *nonce;
char *token;
char *scope;
-} *sessions;
+};