mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-05 16:57:01 +08:00
12 lines
107 B
Go
12 lines
107 B
Go
//go:build linux
|
|
|
|
package nodes
|
|
|
|
import "net/url"
|
|
|
|
type SignalingNode interface {
|
|
Node
|
|
|
|
URL() *url.URL
|
|
}
|