Skip to content

Instantly share code, notes, and snippets.

@isaldin
Created June 22, 2016 15:06
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
AtomSubscriber template
//
// ___FILENAME___
// ___PROJECTNAME___
//
// Created ___FULLUSERNAME___ on ___DATE___.
// Copyright © ___YEAR___ ___ORGANIZATIONNAME___. All rights reserved.
//
// Generated by Atom templates.
//
import Foundation
import Atom
extension ___FILEBASENAMEASIDENTIFIER___: AtomSubscriber
{
typealias EventType = <#Event#>
func stateChanged(event: EventType)
{
switch event {
default:
()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment