     1	import { ValidationError } from 'hooked-api'
     2	
     3	/**
     4	 * release
     5	 * Runs the hook that tells plugins to release resources
     6	 */
     7	export default async ({ runHooks }) => {
     8	  // Run the addRoute hook to notify transport plugins
     9	  await runHooks('release')
    10	
    11	  return { }
    12	}
