pkg / browser

Package browser provides helpers to open files, readers, and urls in a browser window.
BSD 2-Clause "Simplified" License
559 stars 99 forks source link

Fix running project on Windows #29

Closed mislav closed 3 years ago

mislav commented 3 years ago

go run ./examples/Open in this project resulted in an error on Windows because the runtime now references a golang.org/x/sys package that wasn't listed in go.mod.

Also un-exports Windows-specific identifiers.

Also removes the setFlags func which is now a no-op across all platforms.

Ref. #27