Bogay
Bogay
This error seems to be caused by the version of [prometheus/exporter-toolkit](https://github.com/prometheus/exporter-toolkit). I upgrade it to v0.7.1 (which is used on current master branch) and then I can get HTTP/2 response....
In `src/api-server.ts`, add `endpoint: '/'` to the `options` parameter may help. It will look like this. ```typescript Server.swagger(this.app, { endpoint: '/', filePath: './dist/swagger.json' }); ```
@Lee-W I think it's ready to be reviewed.
@Lee-W it's done 👍
Hello, does this improvement also applies to `godot_test!` / `godot_itest!`? They also need to be declared and invoked manually.
@JupiterSky11 have you checked the console? It seems that this example intends to not have any visual effects. Both server and client instances just print one line to console. (last...
I have took a look to the `property-export` example. It seems that it still opens a window but closes it after finished. I think this is still confusing because the...
@setzer22 Which version of godot-rust did you use? I can't reproduce it on v0.10.1, on WSL.
Hello, I want to help solving this issue. Does using `HashMap` to replace `Vec` inside `EnumHint` can solve the problem? I am not familiar to Rust so I am afraid...
I found that #546 had discussed very similar topic to this. If we can serialize/deserialize a Rust enum (at least as `int`). Maybe it will be easy to export that...