Skip to content

Commit 45cb8b4

Browse files
authored
Enhancement: modularization (#81)
* Feature modularizarion: split app in multiple modules, app, common, data, domain * enhancement: add cookies managament to common repository * enhacement: libs * cli * fix cli * enhancement module script * update modules repository in the add module script
1 parent edbb486 commit 45cb8b4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

addModule.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33

44
# Constants
55
MODULES_FOLDER = "modules"
6-
GITHUB_REPO = "https://github.com/rootstrap/flutter-base.git"
7-
6+
GITHUB_REPO = "https://github.com/rootstrap/flutter-modules.git"
87

98
def add_module(module_name):
109
# Create a temporary directory to clone the repository
@@ -28,9 +27,8 @@ def add_module(module_name):
2827

2928
# Main function
3029
def main():
31-
module_name = input("Add or Update module. \n Enter module name: ")
30+
module_name = input("Add module. \n Enter module name: ")
3231
add_module(module_name)
3332

34-
3533
if __name__ == "__main__":
3634
main()

0 commit comments

Comments
 (0)