routes: Dict[String, HTTPHandler] takes in an HTTPHandler trait which can be implemented by different handlers, including ones created by the user. Dict expects a value that implements CollectionElement, so we're getting the following error:HTTPHandler extends CollectionElement like so:trait HTTPHandler(CollectionElement).