8 lines
88 B
Python
8 lines
88 B
Python
from app import App
|
|
|
|
|
|
def main():
|
|
app = App()
|
|
|
|
if __name__ == "__main__":
|
|
main() |