diff options
author | Rory Dudley | 2024-03-30 19:07:45 -0600 |
---|---|---|
committer | Rory Dudley | 2024-03-30 19:07:45 -0600 |
commit | bc64d1917829623cea447871c548950460559232 (patch) | |
tree | 6a895b84a0fc18adc9bfd4fdda728e04759c1d51 | |
parent | d408624afeb0035217d3d327e21b24a62b803f28 (diff) | |
download | dwarvish-bc64d1917829623cea447871c548950460559232.tar.gz |
Fix the build
Need to include line to import compose::Environment.
-rw-r--r-- | src/poem/anthology.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/poem/anthology.rs b/src/poem/anthology.rs index f1adae7..7d97ab7 100644 --- a/src/poem/anthology.rs +++ b/src/poem/anthology.rs @@ -2,6 +2,7 @@ pub mod cd; pub mod exit; pub mod export; pub mod source; +use crate::compose::Environment; use crate::poem::Verse; /// A static list of all the built-in commands |