Go

Golang Lint Error S1021: should merge variable declaration with assignment on next line (gosimple)

Golang

 

var sampleDao dao.Sample
var err         error

修正

var (
  sampleDao dao.Sample
  err       error
)

 

 

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)