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