Files
hummingbird-docc/Sources/HummingbirdDocC/Internal/Protocols/Pathable.swift
T

24 lines
709 B
Swift

// ===----------------------------------------------------------------------===
//
// This source file is part of the Hummingbird DocC open source project
//
// Copyright (c) 2025 Röck+Cöde VoF. and the Hummingbird DocC project authors
// Licensed under Apache license v2.0
//
// See LICENSE for license information
// See CONTRIBUTORS for the list of Hummingbird DocC project authors
//
// SPDX-License-Identifier: Apache-2.0
//
// ===----------------------------------------------------------------------===
/// A protocol that provides a relative path representation.
protocol Pathable {
// MARK: Properties
/// A (relative) path to a resource.
var path: String { get }
}