plugins/Jokes/Plugin.ps1

function Get-CurrentPluginInfo {
    [PSCustomObject]@{

        # identifier for this plugin - please do not change or use this twice
        "guid" = "6654cae2-ca57-4da5-9853-430463b6cfd7"

        # general information about this plugin
        "name" = "Jokes for Testing"
        "version" = "0.0.1"
        "lastUpdate" = "2025-03-18"
        "category" = "channel"
        "type" = "test"
        "stage" = "dev"

        # have a look at ./bin/dependencies if you need more information about how to define this
        "dependencies" = [PSCustomObject]@{
            "psScripts" = @()
            "psModules" = @()
            "psPackages" = @()
        }
        "functions" = [PSCustomObject]@{
            "mailings" = $true
            "lists" = $true
            "preview" = $false
            "upload" = $true
            "broadcast" = $false
        }
    }
}