mqtt_logger/source/main/__init__.py

15 lines
182 B
Python
Raw Normal View History

'''
Created on Feb 15, 2017
@author: tkl
'''
import sys
def main():
''' Entry point for the mqtt data logger.
'''
pass
if __name__ == '__main__':
sys.exit(main())