diff options
author | Ricky Kresslein <rk@lakoliu.com> | 2022-06-05 12:37:34 +0300 |
---|---|---|
committer | Ricky Kresslein <rk@lakoliu.com> | 2022-06-05 12:42:10 +0300 |
commit | 825a2662b1856931549fc2de1164e89b09c7f4aa (patch) | |
tree | 4fa17edbd2e366b5046f264e1aabd5220a8ba274 /src/ui.rs | |
parent | 8d85a8f7a7be6fcb3cb383d6e59f189864b81044 (diff) | |
download | Furtherance-825a2662b1856931549fc2de1164e89b09c7f4aa.tar.zst |
Reports feature (Issue #32)
Diffstat (limited to 'src/ui.rs')
-rwxr-xr-x | src/ui.rs | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/ui.rs b/src/ui.rs index 1a3e3fc..36ba710 100755 --- a/src/ui.rs +++ b/src/ui.rs @@ -14,18 +14,20 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. -pub mod window; mod history_box; -mod tasks_page; +mod preferences_window; +mod report; +mod task_details; mod tasks_group; +mod tasks_page; mod task_row; -mod task_details; -mod preferences_window; +pub mod window; -pub use window::FurtheranceWindow; pub use history_box::FurHistoryBox; -pub use tasks_page::FurTasksPage; +pub use preferences_window::FurPreferencesWindow; +pub use report::FurReport; +pub use task_details::FurTaskDetails; pub use tasks_group::FurTasksGroup; +pub use tasks_page::FurTasksPage; pub use task_row::FurTaskRow; -pub use task_details::FurTaskDetails; -pub use preferences_window::FurPreferencesWindow; +pub use window::FurtheranceWindow; |