sview 0.1.3

Agent-friendly structure views of source and document files
Documentation
import Foundation

struct Client {
    let title: String

    init(title: String) {
        self.title = title
    }

    func fetch(id: String) -> String {
        id
    }
}

protocol Screen {
    var name: String { get }
    func render()
}

extension Client {
    func reset() {}
}

enum Mode {
    case light
    case dark
}