mirror of
https://github.com/atom/atom.git
synced 2026-02-08 13:45:09 -05:00
16 lines
377 B
CoffeeScript
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
|