Separate global from local imports

This commit is contained in:
Jan Philipp Timme 2018-12-29 21:22:47 +01:00
parent 660c55fcaf
commit 874d000879
1 changed files with 4 additions and 1 deletions

View File

@ -4,11 +4,14 @@ import (
"bufio" "bufio"
"flag" "flag"
"fmt" "fmt"
"mailq-inspector/parser"
"os" "os"
"os/exec" "os/exec"
) )
import (
"mailq-inspector/parser"
)
var settings = make(map[string]string) var settings = make(map[string]string)
func argParse() { func argParse() {