ps/Modules/Cole.PowerShell.Developer/Public/Get-CachePathJiraTeams.ps1

13 lines
244 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Get-CachePathJiraTeams {
<#
.SYNOPSIS
Get the path for the cached Jira Teams data
#>
[CmdletBinding()]
[OutputType([object[]])]
param(
)
$cacheFile = Get-CacheFile -Name "JiraTeams.json"
return $cacheFile
}