[Refactor] Rename the app module to calsocial

Just for clarity
This commit is contained in:
2018-07-02 08:33:21 +02:00
parent 6b3d36ff21
commit 7846d9017d
23 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
class CalendarSystem:
__has_months__ = False
__has_weeks__ = False
@property
def day_names(self):
raise NotImplementedError()
@property
def month(self):
raise NotImplementedError()
@property
def days(self):
raise NotImplementedError()