mirror of
https://github.com/go-kratos/kratos.git
synced 2025-01-24 03:46:37 +02:00
34 lines
643 B
Go
34 lines
643 B
Go
package main
|
|
|
|
var _headerTemplate = `
|
|
// Code generated by kratos tool genbts. DO NOT EDIT.
|
|
|
|
NEWLINE
|
|
/*
|
|
Package {{.PkgName}} is a generated cache proxy package.
|
|
It is generated from:
|
|
ARGS
|
|
*/
|
|
NEWLINE
|
|
|
|
package {{.PkgName}}
|
|
|
|
import (
|
|
"context"
|
|
{{if .EnableBatch }}"sync"{{end}}
|
|
NEWLINE
|
|
"github.com/bilibili/kratos/pkg/cache"
|
|
{{if .EnableBatch }}"github.com/bilibili/kratos/pkg/sync/errgroup"{{end}}
|
|
{{.ImportPackage}}
|
|
NEWLINE
|
|
{{if .EnableSingleFlight}} "golang.org/x/sync/singleflight" {{end}}
|
|
)
|
|
|
|
{{if .UseBTS}}
|
|
var _ _bts
|
|
{{end }}
|
|
{{if .EnableSingleFlight}}
|
|
var cacheSingleFlights = [SFCOUNT]*singleflight.Group{SFINIT}
|
|
{{end }}
|
|
`
|