├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── api ├── auth.go ├── chat.go ├── conversation.go ├── images.go └── message.go ├── docker-compose.yml ├── dto ├── auth.go ├── chat.go └── image.go ├── go.mod ├── go.sum ├── lib └── lib.go ├── main.go ├── model ├── conversations.go ├── images.go ├── messages.go ├── refresh_token.go └── user.go └── utils ├── rcontext └── auth.go └── xhttp ├── request.go └── response.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | fly.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/README.md -------------------------------------------------------------------------------- /api/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/api/auth.go -------------------------------------------------------------------------------- /api/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/api/chat.go -------------------------------------------------------------------------------- /api/conversation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/api/conversation.go -------------------------------------------------------------------------------- /api/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/api/images.go -------------------------------------------------------------------------------- /api/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/api/message.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dto/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/dto/auth.go -------------------------------------------------------------------------------- /dto/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/dto/chat.go -------------------------------------------------------------------------------- /dto/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/dto/image.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/go.sum -------------------------------------------------------------------------------- /lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/lib/lib.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/main.go -------------------------------------------------------------------------------- /model/conversations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/model/conversations.go -------------------------------------------------------------------------------- /model/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/model/images.go -------------------------------------------------------------------------------- /model/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/model/messages.go -------------------------------------------------------------------------------- /model/refresh_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/model/refresh_token.go -------------------------------------------------------------------------------- /model/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/model/user.go -------------------------------------------------------------------------------- /utils/rcontext/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/utils/rcontext/auth.go -------------------------------------------------------------------------------- /utils/xhttp/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/utils/xhttp/request.go -------------------------------------------------------------------------------- /utils/xhttp/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/openchat-go/HEAD/utils/xhttp/response.go --------------------------------------------------------------------------------