20 lines
748 B
Dart
20 lines
748 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 exports the 'documentable' module from the Protevus OpenAPI package.
|
|
///
|
|
/// It provides access to the documentable-related functionality defined in the
|
|
/// 'src/documentable.dart' file of the 'protevus_openapi' package.
|
|
///
|
|
/// This library is useful for working with documentable objects within the
|
|
/// Protevus platform, allowing developers to utilize the pre-defined
|
|
/// documentable-related features and structures.
|
|
library documentable;
|
|
|
|
export 'package:protevus_openapi/src/documentable.dart';
|