mirror of
https://github.com/vlang/v.git
synced 2025-09-08 14:51:53 -04:00
7 lines
152 B
V
7 lines
152 B
V
module net
|
|
|
|
// Dialer is an abstract dialer interface for producing connections to adresses.
|
|
pub interface Dialer {
|
|
dial(address string) !Connection
|
|
}
|