Omnishell.psm1

Import-Module "$PSScriptRoot\Omnishell.psd1"
$AppData = "$($env:APPDATA)\Omnishell\"
$configPath = "$AppData\config.json"
if(-not (Test-Path $configPath)){
    $null = New-Item -ItemType Directory -Path $AppData -Force
    Copy-Item "$PSScriptRoot\config.json" $configPath
}
# $null = Get-Prompt