Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docs on top of file #553

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/interface.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
///! The interface creates an API for getting and setting values with ACS
///!
///! Note: this is not an API for all of the functions in ACS, it's only the ones that get used in
///! the command line tools made available in the ACS binary ('acs') and defined in src/args.rs
///!
///! This file offloads a lot of the work that was in src/args.rs but was too repetitive.
///!
Dismissed Show dismissed Hide dismissed
use super::config::Config;
use super::daemon::{daemon_init, Checker};
use super::display::{
Expand Down
Loading