CocoaSplit/StreamServicePlugins/CSYoutubeStreamServicePlugin/CSYoutubeStreamServicePlugin/CSYoutubeStreamServiceViewController.h
Zakk 1490e3a5be Added Youtube output type. Allows selecting configured youtube live 'events' (plus the default live event) and will fetch the destination + stream key when the stream starts.
Added authorization code flow to the OAuth provider.
Added an API call for plugins to get the list of accounts stored in the keychain for a given service
2016-07-25 06:02:48 -04:00

17 lines
395 B
Objective-C

//
// CSYoutubeStreamServiceViewController.h
// CSYoutubeStreamServicePlugin
//
// Created by Zakk on 7/24/16.
// Copyright © 2016 Zakk. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "CSYoutubeStreamService.h"
@interface CSYoutubeStreamServiceViewController : NSViewController
@property (weak) CSYoutubeStreamService *serviceObj;
- (IBAction)authenticateUser:(id)sender;
@end