move scripts to dedicated module (#13)

This commit is contained in:
Josh Thomas 2024-12-10 12:09:57 -06:00 committed by GitHub
parent 5c8157057a
commit cb10d0ca1e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 1 additions and 1 deletions

View file

@ -3,7 +3,7 @@ macro_rules! include_script {
($name:expr) => { ($name:expr) => {
include_str!(concat!( include_str!(concat!(
env!("CARGO_WORKSPACE_DIR"), env!("CARGO_WORKSPACE_DIR"),
"/python/djls/", "python/djls/scripts/",
$name, $name,
".py" ".py"
)) ))

View file