1
2
3
4
5
6
7
8
9
use crate::partial::PartialShell;

/// Builder API for [`PartialShell`]
pub trait ShellBuilder {
    // No methods are currently defined. This trait serves as a placeholder, to
    // make it clear where to add such methods, once necessary.
}

impl ShellBuilder for PartialShell {}