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

http: remove const started, use _ instead

This commit is contained in:
Delyan Angelov 2019-09-25 23:58:32 +03:00 committed by Alexander Medvednikov
parent ab291902d8
commit 33df5edc08

View File

@ -9,7 +9,7 @@ import http.chunked
const (
max_redirects = 4
started = http.init()
_ = http.init()
)
struct Request {