You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
623 B
32 lines
623 B
6 years ago
|
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/stat/prom"
|
||
|
{{if .EnableBatch }}"github.com/bilibili/kratos/pkg/sync/errgroup"{{end}}
|
||
|
{{.ImportPackage}}
|
||
|
NEWLINE
|
||
|
{{if .EnableSingleFlight}} "golang.org/x/sync/singleflight" {{end}}
|
||
|
)
|
||
|
|
||
|
var _ _bts
|
||
|
{{if .EnableSingleFlight}}
|
||
|
var cacheSingleFlights = [SFCOUNT]*singleflight.Group{SFINIT}
|
||
|
{{end }}
|
||
|
`
|