Add missing import to owo_colors

This commit is contained in:
KtorZ
2023-03-30 09:21:59 +02:00
parent cc18e7cff2
commit dc500b8e13
3 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,9 @@
use std::env;
use crate::server::Server;
use aiken_project::{config::Config, paths};
use error::Error;
use lsp_server::Connection;
use owo_colors;
use std::env;
mod cast;
pub mod error;
@@ -9,10 +11,6 @@ mod line_numbers;
pub mod server;
mod utils;
use error::Error;
use crate::server::Server;
pub fn start() -> Result<(), Error> {
tracing::info!("Aiken language server starting");