func handleGetTag(exec boil.Executor, id int64) (*Tag, *HttpError) {
    tag, err := models.Tags(
        qm.Where("id = ?", id),
        qm.Load("TagI18ns")).
        One(exec)