Files
snapd/tests/lib/list-interfaces.go
Miguel Pires 29c9752d66 many: s/ioutil.WriteFile/os.WriteFile (#13217)
Replace ioutil.WriteFile with os.WriteFile since the former has been
deprecated since go1.16 and simply calls the latter.

Signed-off-by: Miguel Pires <miguel.pires@canonical.com>
2023-09-26 11:38:46 +01:00

14 lines
182 B
Go

package main
import (
"fmt"
"github.com/snapcore/snapd/interfaces/builtin"
)
func main() {
for _, iface := range builtin.Interfaces() {
fmt.Printf("%s\n", iface.Name())
}
}