blob: b9678d1a85a880e20e4ec7044fdf44f2c1f21dfc [file] [log] [blame]
// 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_logger/logger.dart';
import 'package:fuchsia_modular/module.dart';
import 'src/intent_handlers/root_intent_handler.dart';
void main() {
setupLogger(name: 'inspect-mod');
Module().registerIntentHandler(RootIntentHandler());
}