Commit 227b18e9 authored by shRabbit's avatar shRabbit
Browse files

初始化项目。

parents
Loading
Loading
Loading
Loading

.dockerignore

0 → 100644
+25 −0
Original line number Diff line number Diff line
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/.idea
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/azds.yaml
**/bin
**/charts
**/docker-compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md
 No newline at end of file

.gitignore

0 → 100644
+6 −0
Original line number Diff line number Diff line
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
.idea/
 No newline at end of file

NoCost.slnx

0 → 100644
+6 −0
Original line number Diff line number Diff line
<Solution>
  <Folder Name="/Solution Items/">
    <File Path="compose.yaml" />
  </Folder>
  <Project Path="src/NoCost/NoCost.csproj" />
</Solution>

compose.yaml

0 → 100644
+7 −0
Original line number Diff line number Diff line
services:
  nocost:
    image: nocost
    build:
      context: .
      dockerfile: src/NoCost/Dockerfile
+16 −0
Original line number Diff line number Diff line
using Microsoft.AspNetCore.Mvc;

namespace NoCost.Controllers.v1.Chat;

[ApiController]
[Route("[controller]")]
public class CompletionsController : ControllerBase
{
    [HttpGet]
    public async Task Get(
        [FromHeader]string? authorization,
        [FromHeader]string? selector)
    {
        
    }
}
 No newline at end of file
Loading