Skip to main content

p2panda_net/supervisor/
config.rs

1// SPDX-License-Identifier: MIT OR Apache-2.0
2
3#[derive(Clone, Default)]
4pub enum RestartStrategy {
5    #[default]
6    OneForOne,
7    OneForAll,
8}