sdk/cache.go

10 lines
185 B
Go
Raw Normal View History

2024-07-22 19:13:54 +00:00
package sdk
import "git.geekeey.de/actions/sdk/cache"
func (c *Action) Cache() *cache.Client {
c.env("ACTIONS_CACHE_URL")
c.env("ACTIONS_RUNTIME_TOKEN")
return cache.New("", "")
}