platform/packages/console/lib/common.dart
2024-08-13 12:50:36 -07:00

21 lines
817 B
Dart

/*
* This file is part of the Protevus Platform.
*
* (C) Protevus <developers@protevus.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/// This library file exports common utility functions and controllers used in the Protevus Console package.
///
/// It includes:
/// - Functionality for determining paths, exported from 'determine_paths.dart'
/// - A unit test controller, exported from 'unit_test_controller.dart'
///
/// These exports allow other parts of the application to easily access and use
/// these common utilities without needing to import them individually.
library;
export 'package:protevus_console/src/common/determine_paths.dart';
export 'package:protevus_console/src/common/unit_test_controller.dart';