/* * This file is part of the Protevus Platform. * * (C) Protevus * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /// This library exports various components of the Protevus OpenAPI v2 specification. /// It provides access to classes and utilities for working with OpenAPI v2 documents, /// including document structure, headers, metadata, operations, parameters, paths, /// responses, schemas, security definitions, and common types used throughout the API. library v2; export 'package:protevus_openapi/src/v2/document.dart'; export 'package:protevus_openapi/src/v2/header.dart'; export 'package:protevus_openapi/src/v2/metadata.dart'; export 'package:protevus_openapi/src/v2/operation.dart'; export 'package:protevus_openapi/src/v2/parameter.dart'; export 'package:protevus_openapi/src/v2/path.dart'; export 'package:protevus_openapi/src/v2/property.dart'; export 'package:protevus_openapi/src/v2/response.dart'; export 'package:protevus_openapi/src/v2/schema.dart'; export 'package:protevus_openapi/src/v2/security.dart'; export 'package:protevus_openapi/src/v2/types.dart';