getConfigModule(); } /** * 获取配置数据 * @return array */ #[RequestMapping(path: "form", methods: "GET")] public function getConfigForm() { return (new ConfigService)->getConfigForm(); } /** * 修改配置 * @return array */ #[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(); } }