docs(PersonalAccessToken): annotate

This commit is contained in:
Rodweil, Theodor 2023-08-06 16:37:05 +02:00
parent 08eb8de842
commit 4e731d026b
No known key found for this signature in database
GPG key ID: F8BC1B0EB1F9CCF5

View file

@ -18,7 +18,8 @@
$ErrorActionPreference = "Stop"
#session storage of Confluence personal access tokens
# session storage of Confluence personal access tokens, scoped to this nested
# module
$script:PATS = @{}
@ -96,4 +97,4 @@ function Get-PersonalAccessToken
$([Net.NetworkCredential]::new('', $script:PATS[$Host]).Password)
}
}
}