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

package lifecycle

import "log/slog"

func ShowLogs() {
wangkx1's avatar
wangkx1 committed
8
	slog.Warn("not implemented")
wangkx1's avatar
init  
wangkx1 committed
9
}