Skip to content

Commit

Permalink
feat: added simple version logging
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisAsanaka committed Jul 27, 2021
1 parent 5f0534a commit 6dffaf7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@

class App(QApplication):

Version = '2.0.1'
Name = 'Valorant-Zone-Stats'

def __init__(self, sys_argv):
super(App, self).__init__(sys_argv)

Expand Down Expand Up @@ -43,5 +46,7 @@ def __init__(self, sys_argv):

logger.debug(f"{files_migrated} files migrated.")

logger.info(f'Running {App.Name} v{App.Version}...')

app = App(sys.argv)
sys.exit(app.exec_())

0 comments on commit 6dffaf7

Please sign in to comment.