10 lines
330 B
Rust
10 lines
330 B
Rust
|
pub(crate) async fn validate_positions(
|
||
|
_config: crate::server::config::RepoConfig,
|
||
|
_addr: actix::prelude::Addr<super::RepoActor>,
|
||
|
_net: kxio::network::Network,
|
||
|
) {
|
||
|
// TODO: validate repo - next is no more than one commit ahead of main
|
||
|
// TODO: validate repo - dev is same as or is ahead of next
|
||
|
todo!()
|
||
|
}
|