domainRegistering provides route registration helpers for a specific path on a domain router, implementing the [Register] interface.
| 629 | // domainRegistering provides route registration helpers for a specific path |
| 630 | // on a domain router, implementing the [Register] interface. |
| 631 | type domainRegistering struct { |
| 632 | domain *domainRouter |
| 633 | path string |
| 634 | } |
| 635 | |
| 636 | // Verify domainRegistering implements Register at compile time. |
| 637 | var _ Register = (*domainRegistering)(nil) |
nothing calls this directly
no outgoing calls
no test coverage detected