Hari Lubovac
Hari Lubovac
Hi - I would like to try this, but my requirements limit to using static HTML for swagger-ui's. So, the question is, can this run without server-side code/files, where the...
I started off by writing something like this: ``` using SQLite; public class Database { public Database(string dataFilePath) { this._connection = new SQLiteAsyncConnection(dataFilePath); this._connection.CreateTablesAsync(CreateFlags.None, typeof(T)); } private readonly SQLiteAsyncConnection _connection;...
Other swagger-json UI's are showing endpoints within all tags/categories that they list, while this one only shows them within their first tag. Second, less important: because of the above problem,...