Expand description
This is the main library crate for the sked application.
It organizes the different modules that make up the application’s functionality.
Modules§
- args
args: Defines the command-line arguments and subcommands usingclap. This module defines the command-line arguments for theskedapplication. It uses theclapcrate to parse and manage arguments.- constant
constant: Contains constant values used throughout the application, such as the banner. This module defines constant values used throughout theskedapplication.- modules
modules: Contains the core logic for each of the application’s features (subcommands). This module serves as the central hub for all feature-specific modules insked. It defines constants and conditionally compiles and exports modules based on feature flags.- utils
utils: Provides common utility functions and traits used by various modules.