gitextract_1la2044u/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── actions/ │ │ ├── build-docs/ │ │ │ └── action.yml │ │ ├── build-ios/ │ │ │ └── action.yml │ │ ├── build-macos/ │ │ │ └── action.yml │ │ ├── build-tvos/ │ │ │ └── action.yml │ │ ├── build-watchos/ │ │ │ └── action.yml │ │ ├── contract-tests/ │ │ │ └── action.yml │ │ ├── lint/ │ │ │ └── action.yml │ │ ├── publish/ │ │ │ └── action.yml │ │ ├── publish-docs/ │ │ │ └── action.yml │ │ ├── test-swiftpm/ │ │ │ └── action.yml │ │ └── update-versions/ │ │ └── action.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── ci.yml │ ├── lint-pr-title.yml │ ├── manual-publish-docs.yml │ ├── manual-publish.yml │ ├── release-please.yml │ └── stale.yml ├── .gitignore ├── .jazzy.yaml ├── .release-please-manifest.json ├── .swiftlint.yml ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── ContractTestService/ │ ├── .gitignore │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ └── Sources/ │ └── ContractTestService/ │ └── main.swift ├── LDSwiftEventSource.podspec ├── LDSwiftEventSource.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── LDSwiftEventSource.xcscheme ├── LICENSE.txt ├── Makefile ├── Package.swift ├── README.md ├── SECURITY.md ├── Source/ │ ├── .swiftlint.yml │ ├── EventParser.swift │ ├── Info.plist │ ├── LDSwiftEventSource.h │ ├── LDSwiftEventSource.swift │ ├── Logs.swift │ ├── Types.swift │ └── UTF8LineParser.swift ├── Tests/ │ ├── .swiftlint.yml │ ├── EventParserTests.swift │ ├── LDSwiftEventSourceTests.swift │ ├── MockHandler.swift │ ├── TestUtil.swift │ └── UTF8LineParserTests.swift └── release-please-config.json