File: stringwriterwriter_go1.12.go

package info (click to toggle)
golang-github-microcosm-cc-bluemonday 1.0.26-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 668 kB
  • sloc: makefile: 25
file content (11 lines) | stat: -rw-r--r-- 135 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
//go:build go1.12
// +build go1.12

package bluemonday

import "io"

type stringWriterWriter interface {
	io.Writer
	io.StringWriter
}