blob: 9a29a9aacd9a3f14ea1deae1e9089b28feba0024 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "MyFlutterViewController.h"
#import "MyApi.h"
#import "MyNestedApi.h"
#import "dartle.h"
@interface MyFlutterViewController ()
@end
@implementation MyFlutterViewController
- (void)viewDidLoad {
[super viewDidLoad];
ACMessageApiSetup(self.engine.binaryMessenger, [[MyApi alloc] init]);
ACMessageNestedApiSetup(self.engine.binaryMessenger, [[MyNestedApi alloc] init]);
}
@end