diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2022-01-03 01:13:27 +0530 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-01-07 16:42:29 +0100 |
commit | f5232c49fe8a3b127c96f7b502775f16aebf3033 (patch) | |
tree | 3f9fedcd698c21d7d6365331512871058e683763 /Makefile.am | |
parent | fc71b18a5a29508bcfc05923fdf2af80030f2653 (diff) |
web: Implement GraphQL endpoint.
* mumi/web/graphql.scm: New file.
* Makefile.am (SOURCES): Register it.
* configure.ac: Test for guile-kolam.
* mumi/web/controller.scm: Import (mumi web graphql).
(controller): Pass on GraphQL requests to handle-graphql.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 82add7b..9f30a90 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,6 +42,7 @@ SOURCES = \ mumi/web/controller.scm \ mumi/web/sxml.scm \ mumi/web/util.scm \ + mumi/web/graphql.scm \ mumi/web/view/html.scm \ mumi/web/view/utils.scm \ mumi/cache.scm \ |