11 lines
212 B
Python
11 lines
212 B
Python
from gui.main_view import MainView
|
|
|
|
def main():
|
|
"""
|
|
Punto di ingresso principale per l'applicazione NetPulseAnalyzer.
|
|
"""
|
|
app = MainView()
|
|
app.mainloop()
|
|
|
|
if __name__ == "__main__":
|
|
main() |