/**
 * $CAMEL_CASE Feature generated by Boat CLI
 */
import { Feature, Route } from '@boat/core';
import { $CAMEL_CASEController } from './$HYPHEN_CASE.controller';

@Feature({
    path: '/$HYPHEN_CASE'
})
export class $CAMEL_CASEFeature {
    @Route({
        path: '/hello',
        method: 'get',
        function: $CAMEL_CASEController.hello
    })
    public static hello() { }

}