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