logging_nonwindows.go 109 Bytes
Newer Older
1
2
3
4
5
6
7
//go:build !windows

package lifecycle

import "log/slog"

func ShowLogs() {
Michael Yang's avatar
lint  
Michael Yang committed
8
	slog.Warn("not implemented")
9
}