feat(dev): support development on darwin (OSX)

- Netlink linux tagged files
- Netlink linux || darwin tagged files
- Create non-implemented files for NOT linux
- Create non-implemented files for NOT linux and NOT darwin
- Specify wireguard netlink integration test as for linux only
This commit is contained in:
Quentin McGaw
2023-05-29 07:16:50 +00:00
parent d6924597dd
commit caabaf918e
12 changed files with 102 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
//go:build !linux
package netlink
func (n *NetLink) IsWireguardSupported() (ok bool, err error) {
panic("not implemented")
}