summaryrefslogtreecommitdiff
path: root/windows.go
blob: 7ecffe9ff32e15cf1acd97a57d807acfc5001d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//go:build windows
// +build windows

// put stuff in here that you only want compiled under windows

package shell

import (
	"go.wit.com/log"
)

func handleSignal(err interface{}, ret int) {
	log.Warn("handleSignal() windows doesn't do signals")
}

func UseJournalctl() {
	log.Warn("journalctl doesn't exist on windows")
}