initial checkin
[outofuni/tavern2.git] / web / main.dart
1 // Copyright (c) 2016, hackbard. All rights reserved. Use of this source code
2 // is governed by a BSD-style license that can be found in the LICENSE file.
3
4 import 'package:angular2/core.dart';
5 import 'package:angular2/platform/browser.dart';
6 import 'package:tavern2/app_component.dart';
7 import 'package:http/browser_client.dart';
8
9 main() {
10         bootstrap(AppComponent,[
11                 provide(BrowserClient,
12                         useFactory: () => new BrowserClient(),
13                         deps: [])
14         ]);
15
16 }
17