blob: 61ca0447778f3e31ff65d74fc2ed0166a2bd8d6a [file] [log] [blame]
// 15 Puzzle on Torus - June 2019
// Copyright 2019 The Fuchsia 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 'package:fuchsia_modular/module.dart';
import 'package:fuchsia_logger/logger.dart';
import 'src/handlers/root_intent_handler.dart';
void main() {
setupLogger(name: 'torus15');
// launch app with inspect enabled
Module().registerIntentHandler(RootIntentHandler());
}