1234567891011121314151617 |
- package cblocks
- import (
- "html/template"
- )
- func (this *CacheBlocks) ResetBlock5(host string) {
- //
- }
- func (this *CacheBlocks) GetBlock5(host, url string) (template.HTML, bool) {
- return template.HTML(""), false
- }
- func (this *CacheBlocks) SetBlock5(host, url string, data template.HTML) {
- //
- }
|