Files
Zerto_Exporter/app/version.py
T
justin 48dc444166 dev updates
Not finished, but pushing for use on another machine
2023-10-24 19:52:09 -04:00

10 lines
218 B
Python

# version.py
VERSION = "1.3.0"
def main():
# Put your main program code here
print(VERSION)
if __name__ == '__main__':
# This code will be executed only when the file is run as the main program
main()