More docs
This commit is contained in:
parent
d8b9ff7bbd
commit
0505b9c89a
|
@ -78,8 +78,13 @@ struct Args {
|
||||||
/// The global server state.
|
/// The global server state.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
struct StateInner {
|
struct StateInner {
|
||||||
|
/// The GitHub Actions Cache API.
|
||||||
api: Api,
|
api: Api,
|
||||||
|
|
||||||
|
/// The upstream cache.
|
||||||
upstream: Option<String>,
|
upstream: Option<String>,
|
||||||
|
|
||||||
|
/// The sender half of the oneshot channel to trigger a shutdown.
|
||||||
shutdown_sender: Mutex<Option<oneshot::Sender<()>>>,
|
shutdown_sender: Mutex<Option<oneshot::Sender<()>>>,
|
||||||
|
|
||||||
/// List of store paths originally present.
|
/// List of store paths originally present.
|
||||||
|
|
Loading…
Reference in a new issue