From 1a4c24db006d23cb5171be30083d3a48be908208 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Wed, 17 Sep 2025 14:24:50 +0700 Subject: [PATCH] Add missing import --- handler.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/handler.py b/handler.py index 19c3897..5b251dd 100644 --- a/handler.py +++ b/handler.py @@ -5,11 +5,11 @@ # 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 General Public License for more details. # You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/. -from bottle import Bottle, route -from config import directory +from bottle import Bottle, route, request, response +from config import directory -import templates.plain.main as template_public -import modules.public.home as public_home +import templates.plain.main as template_public +import modules.public.home as public_home import modules.api.gebox.package as api_gebox_package import modules.api.gebox.version as api_gebox_version