mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-30 22:00:56 -06:00
Twitch output config now has a 'fetch stream key' button that does OAuth authentication and then fetches the user's stream key.
18 lines
437 B
Objective-C
18 lines
437 B
Objective-C
//
|
|
// CSFileStreamRTMPServiceViewController.h
|
|
// CSFileStreamServicePlugin
|
|
//
|
|
// Created by Zakk on 7/16/16.
|
|
// Copyright © 2016 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "CSFileStreamRTMPService.h"
|
|
|
|
@interface CSFileStreamRTMPServiceViewController : NSViewController
|
|
|
|
@property (weak) CSFileStreamRTMPService *serviceObj;
|
|
@property (strong) IBOutlet NSObjectController *fileStreamRTMPServiceController;
|
|
|
|
|
|
@end
|