Fix build

This commit is contained in:
problematicconsumer
2023-10-13 14:56:40 +03:30
parent 7b3012b966
commit ac0eddc583
4 changed files with 13 additions and 6 deletions

View File

@@ -20,6 +20,10 @@ func (cch *CommandClientHandler) Disconnected(message string) {
fmt.Printf("disconnected: %s\n", message)
}
func (cch *CommandClientHandler) ClearLog() {
fmt.Println("clear log")
}
func (cch *CommandClientHandler) WriteLog(message string) {
fmt.Printf("new log: %s\n", message)
}