[go-nuts] Re: WebSocket implementation in Go

2018-08-06 Thread Liviu G
Hey, thanks for sharing ! I remember reading about it on your blog, awesome job. On Sunday, August 5, 2018 at 8:19:01 PM UTC+2, Sergey Kamardin wrote: > > Hi Gophers, > > I have released a stable v1.0 version of https://github.com/gobwas/ws. > > It implements RFC6455 and supports streaming,

[go-nuts] NullTime in sql package ?

2017-12-10 Thread Liviu G
Does anyone know why we don't have a NullTime like NullString in database/sql package ? We shouldn't need to copy/paste this code in various projects or depend on the driver specific NullTime (for postgres for example), right ? type NullTime struct { time.Time Valid bool } func