Skip to content

Commit

Permalink
fix: remove extra ogs reference (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Mar 9, 2024
1 parent 9f2d251 commit e230b7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/build/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export async function generateOpenApi(project: Project) {
const schema: OpenApiDefinition = {
openapi: "3.1.0",
info: {
title: "Open Game Services",
title: "Open Game Backend",
version: "1.0.0",
},
servers: [
Expand All @@ -21,7 +21,7 @@ export async function generateOpenApi(project: Project) {
tags: [
{
name: "Open Game Backend",
description: "Open Game Services",
description: "Open Game Backend",
},
],
paths: {} as Record<string, OpenApiDefinition>,
Expand Down

0 comments on commit e230b7f

Please sign in to comment.