File: mime.go

package info (click to toggle)
golang-github-anacrolix-missinggo 2.1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 872 kB
  • sloc: makefile: 4
file content (18 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package mime

import "strings"

type Type struct {
	Class    string
	Specific string
}

func (t Type) String() string {
	return t.Class + "/" + t.Specific
}

func (t *Type) FromString(s string) {
	ss := strings.SplitN(s, "/", 1)
	t.Class = ss[0]
	t.Specific = ss[1]
}