Files
Zerto_Exporter/app/version.py
T
2024-05-30 20:57:39 -04:00

11 lines
219 B
Python

# version.py
VERSION = "2.1.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()