mirror of
https://github.com/actions/setup-go.git
synced 2024-11-15 20:04:38 +08:00
9 lines
140 B
TypeScript
9 lines
140 B
TypeScript
|
export enum State {
|
||
|
CachePrimaryKey = 'CACHE_KEY',
|
||
|
CacheMatchedKey = 'CACHE_RESULT'
|
||
|
}
|
||
|
|
||
|
export enum Outputs {
|
||
|
CacheHit = 'cache-hit'
|
||
|
}
|