29e90cc13b
This focuses on Windows first, but coudl be used for Mac and possibly linux in the future.
9 lines
122 B
Go
9 lines
122 B
Go
//go:build !windows
|
|
|
|
package lifecycle
|
|
|
|
import "log/slog"
|
|
|
|
func ShowLogs() {
|
|
slog.Warn("ShowLogs not yet implemented")
|
|
}
|