(objs []shared.InceptionType)
| 52 | } |
| 53 | |
| 54 | func (i *Inception) AddMany(objs []shared.InceptionType) { |
| 55 | for _, obj := range objs { |
| 56 | i.Add(obj) |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | func (i *Inception) Add(obj shared.InceptionType) { |
| 61 | i.objs = append(i.objs, NewStructInfo(obj)) |