block1.go 299 B

1234567891011121314151617
  1. package cblocks
  2. import (
  3. "html/template"
  4. )
  5. func (this *CacheBlocks) ResetBlock1(host string) {
  6. //
  7. }
  8. func (this *CacheBlocks) GetBlock1(host, url string) (template.HTML, bool) {
  9. return template.HTML(""), false
  10. }
  11. func (this *CacheBlocks) SetBlock1(host, url string, data template.HTML) {
  12. //
  13. }