├── .dockerignore ├── .env.example ├── .gitignore ├── CLAUDE.md ├── Dockerfile ├── Dockerfile.deno ├── FIX_426_ERROR.md ├── LICENSE ├── README.md ├── deno ├── README.md ├── TEMPLATE_GUIDE.md ├── dphn │ ├── .env.example │ ├── README.md │ ├── SEO_I18N_README.md │ ├── deno.json │ ├── dphn2api.ts │ ├── start.sh │ └── test.sh ├── template │ ├── .env.example │ ├── README.md │ ├── SEO_I18N_README.md │ ├── deno.json │ ├── lib │ │ ├── i18n.ts │ │ ├── pages.ts │ │ ├── seo.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── main.ts │ ├── pages │ │ ├── docs-deploy.ts │ │ └── playground.ts │ └── start.sh ├── two2api │ ├── .env.example │ ├── README.md │ ├── SEO_I18N_README.md │ ├── deno.json │ ├── lib │ │ ├── i18n.ts │ │ ├── pages.ts │ │ ├── seo.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── main.ts │ ├── pages │ │ ├── docs-deploy.ts │ │ └── playground.ts │ └── start.sh └── zai │ ├── .env.example │ ├── ADMIN_GUIDE.md │ ├── README.md │ ├── deno.json │ ├── main.ts │ ├── start.bat │ ├── start.sh │ ├── zai_register.md │ └── zai_register.ts ├── go.mod ├── go.sum ├── main.go ├── simple_client.go ├── start.bat └── start.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.deno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/Dockerfile.deno -------------------------------------------------------------------------------- /FIX_426_ERROR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/FIX_426_ERROR.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/README.md -------------------------------------------------------------------------------- /deno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/README.md -------------------------------------------------------------------------------- /deno/TEMPLATE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/TEMPLATE_GUIDE.md -------------------------------------------------------------------------------- /deno/dphn/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/dphn/.env.example -------------------------------------------------------------------------------- /deno/dphn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/dphn/README.md -------------------------------------------------------------------------------- /deno/dphn/SEO_I18N_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/dphn/SEO_I18N_README.md -------------------------------------------------------------------------------- /deno/dphn/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/dphn/deno.json -------------------------------------------------------------------------------- /deno/dphn/dphn2api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/dphn/dphn2api.ts -------------------------------------------------------------------------------- /deno/dphn/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/dphn/start.sh -------------------------------------------------------------------------------- /deno/dphn/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/dphn/test.sh -------------------------------------------------------------------------------- /deno/template/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/.env.example -------------------------------------------------------------------------------- /deno/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/README.md -------------------------------------------------------------------------------- /deno/template/SEO_I18N_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/SEO_I18N_README.md -------------------------------------------------------------------------------- /deno/template/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/deno.json -------------------------------------------------------------------------------- /deno/template/lib/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/lib/i18n.ts -------------------------------------------------------------------------------- /deno/template/lib/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/lib/pages.ts -------------------------------------------------------------------------------- /deno/template/lib/seo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/lib/seo.ts -------------------------------------------------------------------------------- /deno/template/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/lib/types.ts -------------------------------------------------------------------------------- /deno/template/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/lib/utils.ts -------------------------------------------------------------------------------- /deno/template/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/main.ts -------------------------------------------------------------------------------- /deno/template/pages/docs-deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/pages/docs-deploy.ts -------------------------------------------------------------------------------- /deno/template/pages/playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/pages/playground.ts -------------------------------------------------------------------------------- /deno/template/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/template/start.sh -------------------------------------------------------------------------------- /deno/two2api/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/.env.example -------------------------------------------------------------------------------- /deno/two2api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/README.md -------------------------------------------------------------------------------- /deno/two2api/SEO_I18N_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/SEO_I18N_README.md -------------------------------------------------------------------------------- /deno/two2api/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/deno.json -------------------------------------------------------------------------------- /deno/two2api/lib/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/lib/i18n.ts -------------------------------------------------------------------------------- /deno/two2api/lib/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/lib/pages.ts -------------------------------------------------------------------------------- /deno/two2api/lib/seo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/lib/seo.ts -------------------------------------------------------------------------------- /deno/two2api/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/lib/types.ts -------------------------------------------------------------------------------- /deno/two2api/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/lib/utils.ts -------------------------------------------------------------------------------- /deno/two2api/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/main.ts -------------------------------------------------------------------------------- /deno/two2api/pages/docs-deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/pages/docs-deploy.ts -------------------------------------------------------------------------------- /deno/two2api/pages/playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/pages/playground.ts -------------------------------------------------------------------------------- /deno/two2api/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/two2api/start.sh -------------------------------------------------------------------------------- /deno/zai/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/zai/.env.example -------------------------------------------------------------------------------- /deno/zai/ADMIN_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/zai/ADMIN_GUIDE.md -------------------------------------------------------------------------------- /deno/zai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/zai/README.md -------------------------------------------------------------------------------- /deno/zai/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/zai/deno.json -------------------------------------------------------------------------------- /deno/zai/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/zai/main.ts -------------------------------------------------------------------------------- /deno/zai/start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/zai/start.bat -------------------------------------------------------------------------------- /deno/zai/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/zai/start.sh -------------------------------------------------------------------------------- /deno/zai/zai_register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/zai/zai_register.md -------------------------------------------------------------------------------- /deno/zai/zai_register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/deno/zai/zai_register.ts -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/main.go -------------------------------------------------------------------------------- /simple_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/simple_client.go -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/start.bat -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dext7r/ZtoApi/HEAD/start.sh --------------------------------------------------------------------------------