comparison cmd/aya/main.go @ 70:00b02728b74f draft

Stop using logrus, updated dependencies Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author yakumo.izuru
date Thu, 28 Sep 2023 01:46:46 +0000
parents 03019bbf2e0e
children 7819959ac6ca
comparison
equal deleted inserted replaced
69:03019bbf2e0e 70:00b02728b74f
1 // $TheSupernovaDuo: cmd/aya/main.go,v 0.6.1 2023/9/16 11:43:00 yakumo_izuru Exp $ 1 // $TheSupernovaDuo: cmd/aya/main.go,v 0.6.3 2023/09/27 22:46:30 yakumo_izuru Exp $
2 package main 2 package main
3 3
4 import ( 4 import (
5 "bytes" 5 "bytes"
6 "fmt" 6 "fmt"
7 "io" 7 "io"
8 "log"
8 "net/http" 9 "net/http"
9 "os" 10 "os"
10 "os/exec" 11 "os/exec"
11 "path/filepath" 12 "path/filepath"
12 "strings" 13 "strings"
13 "text/template" 14 "text/template"
14 "time" 15 "time"
15 16
16 "github.com/eknkc/amber" 17 "github.com/eknkc/amber"
17 "github.com/russross/blackfriday/v2" 18 "github.com/russross/blackfriday/v2"
18 log "github.com/sirupsen/logrus"
19 "github.com/yosssi/gcss" 19 "github.com/yosssi/gcss"
20 "gopkg.in/yaml.v2" 20 "gopkg.in/yaml.v2"
21 "marisa.chaotic.ninja/aya" 21 "marisa.chaotic.ninja/aya"
22 ) 22 )
23 23