forked from kemitix/git-next
11 lines
315 B
Rust
11 lines
315 B
Rust
|
use crate::server::forge;
|
||
|
|
||
|
pub async fn check_next(
|
||
|
_next: forge::Commit,
|
||
|
_repo_details: crate::server::config::RepoDetails,
|
||
|
_addr: actix::prelude::Addr<super::RepoActor>,
|
||
|
_net: kxio::network::Network,
|
||
|
) {
|
||
|
// TODO: (#13) check statuses for next head - if ok, advance main to next and reassess
|
||
|
}
|