From d62971c915fc0cae38ff8950a06b7213551eaceb Mon Sep 17 00:00:00 2001 From: clerie Date: Sat, 15 May 2021 13:55:33 +0200 Subject: [PATCH] Rearrange module files --- uptimestatus/__init__.py | 0 {static => uptimestatus/static}/status.css | 0 {templates => uptimestatus/templates}/status.html | 0 uptime-status.py => uptimestatus/views.py | 0 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 uptimestatus/__init__.py rename {static => uptimestatus/static}/status.css (100%) rename {templates => uptimestatus/templates}/status.html (100%) rename uptime-status.py => uptimestatus/views.py (100%) diff --git a/uptimestatus/__init__.py b/uptimestatus/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/static/status.css b/uptimestatus/static/status.css similarity index 100% rename from static/status.css rename to uptimestatus/static/status.css diff --git a/templates/status.html b/uptimestatus/templates/status.html similarity index 100% rename from templates/status.html rename to uptimestatus/templates/status.html diff --git a/uptime-status.py b/uptimestatus/views.py similarity index 100% rename from uptime-status.py rename to uptimestatus/views.py