2017-10-19 22:16:28 +00:00
|
|
|
import 'dart:html';
|
2021-05-15 06:53:03 +00:00
|
|
|
import 'package:angel3_client/browser.dart';
|
2017-10-19 22:16:28 +00:00
|
|
|
|
|
|
|
/// Dummy app to ensure client works with DDC.
|
2021-04-10 13:22:20 +00:00
|
|
|
void main() {
|
|
|
|
var app = Rest(window.location.origin);
|
2019-01-06 02:08:31 +00:00
|
|
|
window.alert(app.baseUrl.toString());
|
2018-08-26 22:41:01 +00:00
|
|
|
}
|