logging_nonwindows.go 109 Bytes
Newer Older
wangkx1's avatar
wangkx1 committed
1
2
3
4
5
6
7
8
9
//go:build !windows

package lifecycle

import "log/slog"

func ShowLogs() {
	slog.Warn("not implemented")
}