mirror of
https://github.com/apache/activemq.git
synced 2025-02-10 20:15:56 +00:00
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@565392 13f79535-47bb-0310-9956-ffa450edef68
14 lines
238 B
Python
Executable File
14 lines
238 B
Python
Executable File
"""
|
|
Module Main
|
|
"""
|
|
from loganalyzergui.Application import Application
|
|
|
|
def main():
|
|
"""
|
|
Entrance point for the application
|
|
"""
|
|
app = Application(0)
|
|
app.MainLoop()
|
|
|
|
if __name__ == '__main__':
|
|
main() |