21 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright © 2025 NAME HERE <EMAIL ADDRESS>
 | |
| */
 | |
| package main
 | |
| 
 | |
| import (
 | |
| 	"github.com/jasinco/crtman/cmd"
 | |
| 	"github.com/spf13/viper"
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	viper.SetConfigName("crtman.toml")
 | |
| 	viper.AddConfigPath("/etc/")
 | |
| 	viper.AddConfigPath("$HOME/")
 | |
| 	viper.AddConfigPath(".")
 | |
| 	viper.SetConfigType("toml")
 | |
| }
 | |
| 
 | |
| func main() {
 | |
| 	cmd.Execute()
 | |
| }
 |