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