1// Copyright 2020 The Gitea Authors. All rights reserved.
2// Use of this source code is governed by a MIT-style
3// license that can be found in the LICENSE file.
4
5package svg
6
7// SVGs contains discovered SVGs
8var SVGs map[string]string
9
10// Init discovers SVGs and populates the `SVGs` variable
11func Init() {
12	SVGs = Discover()
13}
14