9 lines
208 B
Go
9 lines
208 B
Go
//go:build windows
|
|
|
|
package instance
|
|
|
|
// Windows is a development/test host only; Linux deployment resolves the real process identity.
|
|
func currentUIDGID() (uint32, uint32, error) {
|
|
return 1000, 1000, nil
|
|
}
|