From 7b521cf75376ccfd38c2ff077c854b408fe616ff Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 9 Jul 2020 18:57:29 -0400 Subject: Split code and add breadcrumb nav --- events.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 events.c (limited to 'events.c') diff --git a/events.c b/events.c new file mode 100644 index 0000000..c891bff --- /dev/null +++ b/events.c @@ -0,0 +1,26 @@ +/* Copyright (C) 2020 C. McEnroe + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include + +#include "server.h" + +enum kcgi_err pageEvents(struct kreq *req) { + return httpFail(req, KHTTP_501); +} -- cgit 1.4.1