leankg 0.20.4

Lightweight Knowledge Graph for AI-Assisted Development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
function Get-User {
    param([int]$Id)
    return @{ id = $Id; name = "user$Id" }
}

function Set-User {
    param([int]$Id, [string]$Name)
    return @{ id = $Id; name = $Name }
}

function Test-Helper {
    Write-Host "helper"
}