runne
runne
**Is your feature request related to a problem? Please describe.** 当前 指定 pool size 且没有指定 Nonblocking 时, 当 pool 满了时 submit 是会阻寨的, 但有时我不能让任务一直等着, 想要加一个取消机制。 我想只要对 retrieveWorker 改造一下, 就可以实现了 ````go func...
can add githubfs? github repo as a filesystem
**Is your feature request related to a problem? Please describe.** I hope chinese! **Describe the solution you'd like** add i18n support
I develop https://github.com/mei-rune/gogen base swag! but change some code https://github.com/mei-rune/swag, can merge it to here. https://github.com/mei-rune/swag/commit/6d5b10b681fcfe265dc688653ebc3d782bf721b1
### Issue Description Can don't change req.RequestURI in middleware.RemoveTrailingSlash()? My app has a variable url prefix, the url prefix can change by config file. So I add e.Pre(middleware.RemoveTrailingSlash()) my code...
```` 15:28:44.419 register GUI log handler. 15:28:57.853 SQL: DROP TABLE IF EXISTS ` tpt_test_for_handler`; 15:28:57.898 affected rows: 0 15:28:57.899 SQL: SELECT table_name, table_schema, engine FROM information_schema.tables WHERE table_schema = 'test'...
请问一下, 我看到你们只有表单的设计页面, 那请问有表格页面的设计器么? 可以找到很多表单设计器, 但用处不大, 我们更想要一个表单+表格的设计器 表格 的数据和动作可以在表格设计器中指定, 数据和动作对应的后台 web 服务让我们自已写就行了。 像 nocodb 之类的代码平台,过于复杂, 又缺乏功能和灵活,应用过于狭窄。 像 airtable 或 seatable, rowy 之类的表格,过于简单, 功能不足。 你们这类表单设计器又太简陋, 如果你们再提供一个表格设计器, 那么就能派上大用处了。
can add CloserFunc and WriterAndCloser CloserFunc is: ````go type CloserFunc func() error func (fn CloserFunc) Close() error { return fn() } var _ io.Closer = CloserFunc(func() error {}) ```` WriterAndCloser...