Standardize story crate lib name (#17117)

`crates/story/src/lib.rs` -> `crates/story/src/story.rs`

Release Notes:

- N/A
This commit is contained in:
Nate Butler 2024-08-29 20:07:39 -04:00 committed by GitHub
parent 3d175f685f
commit 6646b15f29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -5,6 +5,10 @@ edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lib]
name = "story"
path = "src/story.rs"
[lints]
workspace = true

View File

@ -1,3 +0,0 @@
mod story;
pub use story::*;