mirror of
https://github.com/munki/munki.git
synced 2026-03-15 05:50:16 -05:00
git-svn-id: http://munki.googlecode.com/svn/trunk@225 a4e17f2e-e282-11dd-95e1-755cbddbdd66
22 lines
442 B
Python
22 lines
442 B
Python
#
|
|
# main.py
|
|
# MunkiStatus
|
|
#
|
|
# Created by Greg Neagle on 9/21/09.
|
|
# Copyright Walt Disney Animation 2009. All rights reserved.
|
|
#
|
|
|
|
#import modules required by application
|
|
import objc
|
|
import Foundation
|
|
import AppKit
|
|
|
|
from PyObjCTools import AppHelper
|
|
|
|
# import modules containing classes required to start application and load MainMenu.nib
|
|
import MunkiStatusAppDelegate
|
|
import MSController
|
|
|
|
# pass control to AppKit
|
|
AppHelper.runEventLoop()
|