Add missing import

This commit is contained in:
Dita Aji Pratama 2025-09-17 14:24:50 +07:00
parent 59ca40d0c1
commit 1a4c24db00

View File

@ -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