mirror of
https://gitlab.com/nullmax17/RestySqlite.git
synced 2025-03-14 16:01:13 +03:00
Fixes and clearing
This commit is contained in:
parent
63151ad724
commit
051143abd0
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,4 +1,5 @@
|
||||
/bin
|
||||
/obj
|
||||
/.vscode
|
||||
*.db
|
||||
*.db
|
||||
*.conf
|
@ -39,7 +39,7 @@ namespace RestySqlite
|
||||
|
||||
var group = app.MapGroup(handle);
|
||||
|
||||
group.MapGet($"{handle}/", async() => { return await repo.ListTables(); });
|
||||
group.MapGet("/", async() => { return await repo.ListTables(); });
|
||||
|
||||
group.MapGet("/{tableName}", async(string tableName) =>
|
||||
{ return await repo.ListColumns(tableName); });
|
||||
|
Loading…
x
Reference in New Issue
Block a user