mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-17 14:15:52 -06:00
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
17 lines
395 B
Objective-C
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
|