Files
atom/src/startup.coffee
Chris Wanstrath 51f8497229 atom.storage
2011-11-09 12:28:38 -08:00

16 lines
377 B
CoffeeScript

# Like sands through the hourglass, so are the days of our lives.
App = require 'app'
Event = require 'event'
Native = require 'native'
KeyBinder = require 'key-binder'
Storage = require 'storage'
window.atom = {}
window.atom.native = new Native
window.atom.event = new Event
window.atom.keybinder = new KeyBinder
window.atom.storage = new Storage
window.atom.app = new App