mirror of
https://github.com/ZaidElkurdi/AssistantPlus.git
synced 2025-01-22 19:40:51 +00:00
15 lines
387 B
Objective-C
15 lines
387 B
Objective-C
//
|
|
// customReplyCommands.h
|
|
// customreply
|
|
//
|
|
// Created by Zaid Elkurdi on 3/22/15.
|
|
// Copyright (c) 2015 Zaid Elkurdi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "AssistantPlusHeaders.h"
|
|
|
|
@interface customReplyCommands : NSObject <APPluginCommand>
|
|
-(BOOL)handleSpeech:(NSString *)text withTokens:(NSSet *)tokens withSession:(id<APSiriSession>)session;
|
|
@end
|