4 lines
59 B
Swift
4 lines
59 B
Swift
|
public protocol Logger {
|
||
|
func log(_ message: String)
|
||
|
}
|