- 新增 DifyServeService 服务类,实现应用列表获取和持久化- 添加 DifyServeMapper 和 DifyServeRepository 接口 - 创建 AppsResponse 实体类,用于存储应用响应数据 - 新增 V1ServeController 控制器,提供应用列表接口 - 在 application-dev.yml 中添加 Dify 服务器配置信息 - 移除不必要的 SseController 和 WebConfig 类
13 lines
251 B
SQL
13 lines
251 B
SQL
create table persistent_logins
|
|
(
|
|
username varchar(64) not null,
|
|
series varchar(64) not null
|
|
primary key,
|
|
token varchar(64) not null,
|
|
last_used timestamp not null
|
|
);
|
|
|
|
alter table persistent_logins
|
|
owner to gitea;
|
|
|