1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/x/websocket/uri.v

17 lines
494 B
V
Raw Normal View History

module websocket
2020-12-02 06:02:53 +03:00
// Represents an Uri for websocket connections
struct Uri {
mut:
2020-12-02 06:02:53 +03:00
url string // The url to the websocket endpoint
hostname string // The hostname to the websocket endpoint
port string // The port to the websocket endpoint
resource string // The resource used on the websocket endpoint
querystring string // The query string on the websocket endpoint
}
2020-12-02 06:02:53 +03:00
// str returns the string representation of the Uri
pub fn (u Uri) str() string {
return u.url
}