From b4d20e7f87b83c3177e0c48d5703e359c823c3f8 Mon Sep 17 00:00:00 2001 From: vosjedev Date: Sun, 12 Oct 2025 21:23:50 +0200 Subject: Something with the web server, idk. seems to have an index now. --- src/acit/web.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/acit/web.py b/src/acit/web.py index ae45679..15cbe46 100644 --- a/src/acit/web.py +++ b/src/acit/web.py @@ -7,7 +7,12 @@ class Server(): pass @cherrypy.expose - def default(self): + def index(self,quote="nothing"): + return "

Hi

you said %s

" %quote + + + @cherrypy.expose + def default(self,*path,**kwargs): return "Hello world" -- cgit