diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-12-01 22:57:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 22:57:52 +0100 |
commit | ec0207e9b1cd61d2c14e36df43f56aa0bea56222 (patch) | |
tree | 47dcaae43911b3fc12d0166b3eb7335f85ed9f95 /cli/build.rs | |
parent | a1d823e27d1b605b5658fddc1c9273667f0e9e84 (diff) |
perf(lsp): better op performance logging (#21423)
Diffstat (limited to 'cli/build.rs')
-rw-r--r-- | cli/build.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/cli/build.rs b/cli/build.rs index 4a481885e..53ee914c2 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -60,17 +60,11 @@ mod ts { false } - #[derive(Debug, Deserialize, Serialize)] - #[serde(rename_all = "camelCase")] - struct ScriptVersionArgs { - specifier: String, - } - #[op2] #[string] fn op_script_version( _state: &mut OpState, - #[serde] _args: ScriptVersionArgs, + #[string] _arg: &str, ) -> Result<Option<String>, AnyError> { Ok(Some("1".to_string())) } |