Move views to module

This commit is contained in:
Tobias Kunze 2025-03-17 03:30:44 +01:00
parent 0d09d338e8
commit 092a92d986
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,6 @@
from .generic import IndexView, ProfileView
__all__ = [
"IndexView",
"ProfileView",
]