We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e17c4 commit 5dada87Copy full SHA for 5dada87
server/src/ide/vscode.rs
@@ -1,4 +1,3 @@
1
-use indoc::formatdoc;
2
// Copyright (C) 2025 Bryan A. Jones.
3
//
4
// This file is part of the CodeChat Editor. The CodeChat Editor is free
@@ -17,9 +16,6 @@ use indoc::formatdoc;
17
16
/// `vscode.rs` -- Implement server-side functionality for the Visual Studio
18
/// Code IDE
19
/// ========================================================================
20
-// Modules
21
-// -------
22
-
23
// Imports
24
// -------
25
// ### Standard library
@@ -31,6 +27,7 @@ use actix_web::{
31
27
error::{Error, ErrorBadRequest},
32
28
get, web,
33
29
};
30
+use indoc::formatdoc;
34
use log::{debug, error};
35
36
// ### Local
0 commit comments