krankerl 0.9.4

A CLI helper to manage Nextcloud apps
Documentation
1
2
3
4
5
6
7
use std::path::Path;
use failure::Error;
use config;

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