diff options
author | Teddy Wing | 2020-08-02 05:30:03 +0200 |
---|---|---|
committer | Teddy Wing | 2020-08-02 05:30:03 +0200 |
commit | 344f4d3fcd7d36e67ca04dd2e3e21f0e8b12b0dd (patch) | |
tree | 9c274f631ffca2c4c9e08a7d4a221a2f8b80d082 /src/lib.rs | |
parent | 3f125dae8fa2e97354c3c7bc4def4bac1e9eacf1 (diff) | |
download | git-suggestion-344f4d3fcd7d36e67ca04dd2e3e21f0e8b12b0dd.tar.bz2 |
git-sugpatch: Move the suggestion arguments loop to a new function
Split this out into a separate function because I want to reuse it in
`git-sugapply`.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,6 +6,7 @@ pub mod error; pub(crate) mod owner_repo; mod arg; +mod suggestion; -pub use arg::is_suggestion_id; +pub use suggestion::for_suggestion; |