mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
30 lines
616 B
Rust
30 lines
616 B
Rust
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
use deno_core::error::AnyError;
|
|
use lspower::LspService;
|
|
use lspower::Server;
|
|
|
|
mod analysis;
|
|
mod capabilities;
|
|
mod config;
|
|
mod diagnostics;
|
|
mod documents;
|
|
mod language_server;
|
|
mod performance;
|
|
mod sources;
|
|
mod text;
|
|
mod tsc;
|
|
mod utils;
|
|
|
|
pub async fn start() -> Result<(), AnyError> {
|
|
let stdin = tokio::io::stdin();
|
|
let stdout = tokio::io::stdout();
|
|
|
|
let (service, messages) =
|
|
LspService::new(language_server::LanguageServer::new);
|
|
Server::new(stdin, stdout)
|
|
.interleave(messages)
|
|
.serve(service)
|
|
.await;
|
|
|
|
Ok(())
|
|
}
|