mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-20 02:56:10 +00:00
11 lines
200 B
Python
11 lines
200 B
Python
import party.main as main
|
|
from enum import Enum
|
|
|
|
def create_app():
|
|
return main.app
|
|
|
|
class MateMarke(Enum):
|
|
ClubMate = "Club Mate"
|
|
FloraPower = "Flora Power"
|
|
MioMioMate = "MioMio Mate"
|