diff --git a/scripts/http_host/host_manager.py b/scripts/http_host/host_manager.py index a81cbc8..64315ae 100755 --- a/scripts/http_host/host_manager.py +++ b/scripts/http_host/host_manager.py @@ -7,12 +7,12 @@ from pathlib import Path import click import requests -from http_host_lib.config import config -from http_host_lib.download_assets import ( +from http_host_lib.assets import ( download_and_extract_asset_tar_gz, download_sprites, ) -from http_host_lib.download_tileset import download_and_extract_tileset +from http_host_lib.btrfs import download_and_extract_tileset +from http_host_lib.config import config from http_host_lib.mount import clean_up_mounts, create_fstab from http_host_lib.nginx import write_nginx_config from http_host_lib.set_tileset_versions import set_tileset_versions diff --git a/scripts/http_host/http_host_lib/download_assets.py b/scripts/http_host/http_host_lib/assets.py similarity index 100% rename from scripts/http_host/http_host_lib/download_assets.py rename to scripts/http_host/http_host_lib/assets.py diff --git a/scripts/http_host/http_host_lib/download_tileset.py b/scripts/http_host/http_host_lib/btrfs.py similarity index 100% rename from scripts/http_host/http_host_lib/download_tileset.py rename to scripts/http_host/http_host_lib/btrfs.py