Skip to content

Commit

Permalink
fd
Browse files Browse the repository at this point in the history
  • Loading branch information
FroggerHH committed May 9, 2024
1 parent 98db1c6 commit 2b8b86e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 19 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/documentation_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@ def extract_info(file_path):
lines = f.readlines()
for line in lines:
if "public string Route" in line:
info["Route"] = line.split('"')[1].strip().strip('";')[0]
info["Route"] = line.split('=>')[1].strip().strip('";')[0]
elif "public string HttpMethod" in line:
info["HttpMethod"] = line.split('"')[1].strip().strip('";')[0]
info["HttpMethod"] = line.split('=>')[1].strip().strip('";')[0]
elif "public string Description" in line:
info["Description"] = line.split('"')[1].strip().strip('";')[0]
info["Description"] = line.split(
'=>')[1].strip().strip('";')[0]
return info


Expand Down
16 changes: 0 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +0,0 @@
### ExecuteCommand.cs
P / - E
### MainRoute.cs
G / - R
### ServerInfo.cs
G / - R
### GetLog.cs
G / - R
### AvalableCommand.cs
G / - R
### FindObjects.cs
G / - S
### SetPlayerData.cs
P / - P
### GetPlayerData.cs
G / - R

0 comments on commit 2b8b86e

Please sign in to comment.