mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
11 lines
182 B
Go
11 lines
182 B
Go
package main
|
|
|
|
import "fmt"
|
|
import "github.com/snapcore/snapd/interfaces/builtin"
|
|
|
|
func main() {
|
|
for _, iface := range builtin.Interfaces() {
|
|
fmt.Printf("%s\n", iface.Name())
|
|
}
|
|
}
|