OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 @HtmlImport('bar.html') | 4 library web_components.init; |
5 library web_components.test.foo.bar; | |
6 | 5 |
7 import 'package:web_components/web_components.dart'; | 6 import 'dart:async'; |
| 7 import 'src/init.dart'; |
| 8 |
| 9 Future main() => initWebComponents(); |
OLD | NEW |