mirror of
https://github.com/github/codeql.git
synced 2026-08-02 08:23:01 +02:00
10 lines
111 B
Go
10 lines
111 B
Go
package main
|
|
|
|
type Config struct{}
|
|
|
|
func (_ Config) get(s string) string {
|
|
return ""
|
|
}
|
|
|
|
var config = Config{}
|