Return the set of all names of all entry points.
(self)
| 346 | |
| 347 | @property |
| 348 | def names(self) -> set[str]: |
| 349 | """ |
| 350 | Return the set of all names of all entry points. |
| 351 | """ |
| 352 | return {ep.name for ep in self} |
| 353 | |
| 354 | @property |
| 355 | def groups(self) -> set[str]: |
no outgoing calls