From 066ab71762d47ce0c8d97304ce33e578bab505a6 Mon Sep 17 00:00:00 2001 From: brb Date: Wed, 5 Jul 2023 17:07:52 +0200 Subject: [PATCH] updated welcome message --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 11caef8..c4d49a4 100644 --- a/app.py +++ b/app.py @@ -24,7 +24,7 @@ app = FastAPI() @app.get('/') async def root(): - return {'message': 'hello world'} + return {'message': 'Welcome to Gitea Runner'} @app.post('/test') async def test(request: Request):