mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 14:15:50 -06:00
26 lines
555 B
Objective-C
26 lines
555 B
Objective-C
//
|
|
// TwitchStreamServiceViewController.m
|
|
// CSTwitchStreamServicePlugin
|
|
//
|
|
// Created by Zakk on 8/29/14.
|
|
// Copyright (c) 2014 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import "TwitchStreamServiceViewController.h"
|
|
|
|
@interface TwitchStreamServiceViewController ()
|
|
|
|
@end
|
|
|
|
@implementation TwitchStreamServiceViewController
|
|
|
|
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
|
|
{
|
|
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
|
if (self) {
|
|
// Initialization code here.
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|