HostExpr describes a server host.
| 33 | |
| 34 | // HostExpr describes a server host. |
| 35 | HostExpr struct { |
| 36 | // Name of host |
| 37 | Name string |
| 38 | // Name of server that uses host. |
| 39 | ServerName string |
| 40 | // Description of host |
| 41 | Description string |
| 42 | // URIs to host if any, may contain parameter elements using |
| 43 | // the "{param}" syntax. |
| 44 | URIs []URIExpr |
| 45 | // Variables defines the URI variables if any. |
| 46 | Variables *AttributeExpr |
| 47 | // Meta is a set of key/value pairs. |
| 48 | Meta MetaExpr |
| 49 | } |
| 50 | |
| 51 | // URIExpr represents a parameterized URI. |
| 52 | URIExpr string |
nothing calls this directly
no outgoing calls
no test coverage detected