feat(gateway): 添加网关服务基础结构

- 新增 main.go 文件,定义网关服务的入口
- 创建 login.html 模板文件,用于用户登录界面
This commit is contained in:
高手 2025-02-15 12:17:18 +08:00
parent 2544be69e8
commit e76e79a146
2 changed files with 11 additions and 0 deletions

1
gateway/main.go Normal file
View File

@ -0,0 +1 @@
package gateway

View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>$Title$</title>
</head>
<body>
$END$
</body>
</html>