change agent module

This commit is contained in:
Josh Thomas 2024-12-16 10:30:23 -06:00
parent cbe170f629
commit 3af91d404c
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ async fn main() -> Result<ExitCode> {
let cli = Cli::parse();
match cli.command {
Command::Serve(_serve) => {
let python = PythonProcess::new::<Vec<&OsStr>, &OsStr>("djls.agent", None, None)?;
let python = PythonProcess::new::<Vec<&OsStr>, &OsStr>("djls_agent", None, None)?;
djls_server::serve(python).await?
}
}