mirror of
https://github.com/atom/atom.git
synced 2026-02-08 13:45:09 -05:00
16 lines
237 B
CoffeeScript
16 lines
237 B
CoffeeScript
KeyBinder = require 'key-binder'
|
|
fs = require 'fs'
|
|
|
|
module.exports =
|
|
class Extension
|
|
pane: null
|
|
|
|
constructor: ->
|
|
console.log "#{@constructor.name}: Loaded"
|
|
|
|
storageNamespace: -> @constructor.name
|
|
|
|
startup: ->
|
|
|
|
shutdown: ->
|