mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
17 lines
318 B
Swift
17 lines
318 B
Swift
public struct Logger {
|
|
public init() {}
|
|
@_spi(Usable) public func spiFunc() {}
|
|
public func regularFunc() {}
|
|
func internalFunc() {}
|
|
private func privateFunc() {}
|
|
}
|
|
struct InternalLogger {
|
|
init() {}
|
|
}
|
|
private struct PrivateLogger {
|
|
init() {}
|
|
}
|
|
public func setup() -> XLogging.Logger? {
|
|
return Logger()
|
|
}
|