blob: 3dcc608f09f7cbf19822a33ccf39bd57c4f6f62e [file] [log] [blame]
// Copyright 2018 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: 'slider_mod');
Module().registerIntentHandler(RootIntentHandler());
}