getConfigModule(); } #[RequestMapping(path: "form", methods: "GET")] public function getConfigForm() { return (new ConfigService)->getConfigForm(); } #[RequestMapping(path: "update", methods: "POST")] public function updateConfig() { return (new ConfigService)->handle(); } /** * @return array * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface * @throws RedisException */ #[RequestMapping(path: "system/address_list", methods: "GET")] public function getAddressList() { return (new SystemService)->address_list(); } }