From cde5b599ef9585838a7d76fd77c2e321f38ba297 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD=20=D0=A1=D0=BE=D0=BB=D0=BD=D1=86?= =?UTF-8?q?=D0=B5=D0=B2?= Date: Wed, 9 Oct 2024 14:57:40 +0300 Subject: [PATCH] Move testmod file to module directory --- config.py | 2 +- testmod.py => testmodule/main.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename testmod.py => testmodule/main.py (100%) diff --git a/config.py b/config.py index eead487..2f18149 100644 --- a/config.py +++ b/config.py @@ -3,7 +3,7 @@ import logging from server.common import HandlerType, HTTPMethod from server.urlhandler import Path -import testmod +from testmodule import main as testmod SETUP = { diff --git a/testmod.py b/testmodule/main.py similarity index 100% rename from testmod.py rename to testmodule/main.py