github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/vvm/db_cert_cache/provide.go (about) 1 /* 2 * Copyright (c) 2022-present unTill Pro, Ltd. 3 */ 4 5 package dbcertcache 6 7 import "golang.org/x/crypto/acme/autocert" 8 9 func ProvideDbCache(storage RouterAppStoragePtr) autocert.Cache { 10 return &autoCertDbCache{ 11 appStorage: storage, 12 } 13 }