#Cannot initialize 1 variables with 2 values
12 messages · Page 1 of 1 (latest)
This is the function it's referring to: // NewEulaService creates a new EulaService interface func NewEulaService(database nosql.Database) (Eulas, error) { if database == nil { return nil, errors.New("nil database") } return &eulasService{ database: database, }, nil }