mirror of
https://github.com/makayabou/asg-server.git
synced 2026-05-02 17:43:36 +02:00
7 lines
133 B
Go
7 lines
133 B
Go
package cache
|
|
|
|
// Config controls the cache backend via a URL (e.g., "memory://", "redis://...").
|
|
type Config struct {
|
|
URL string
|
|
}
|