import { HTTPMethod } from "./method"; export interface HTTPEndpointConfig { path?: string; method?: HTTPMethod; } export interface HTTPServiceConfig { path: string; }