Passed
Pull Request — main (#177)
by Yume
01:58
created

assets/assets_dev.go   A

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A assets.Assets 0 2 1
1
//go:build dev
2
// +build dev
3
4
package assets
5
6
import (
7
	"net/http"
8
)
9
10
func Assets() http.FileSystem {
11
	return http.Dir("assets")
12
}
13