22 lines
861 B
Dart
22 lines
861 B
Dart
/*
|
|
* This file is part of the Protevus Platform.
|
|
*
|
|
* (C) Protevus <developers@protevus.com>
|
|
* (C) S. Brett Sutton <bsutton@onepub.dev>
|
|
*
|
|
* 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';
|