sd-switch 0.5.4

A systemd unit reload/restart utility for Home Manager
Documentation
1
2
3
4
5
6
7
8
9
10
use ini::Ini;

pub fn ini_eq(a : Ini, b : Ini) -> bool {
    true
}

/// Merges `a` and `b`. Any overlapping fields will be overridden by `b`.
pub fn ini_merge(a : Ini, b : Ini) -> Ini {
    todo!()
}