krankerl 0.13.2

A CLI helper to manage Nextcloud apps
Documentation
1
2
3
4
5
6
7
8
use color_eyre::Result;
use std::path::Path;

use crate::config;

pub fn init(app_path: &Path) -> Result<()> {
    config::app::init_config(app_path)
}