goimports automating imports for me now

This commit is contained in:
Miloš Jovanović 2026-09-09 22:53:38 +02:00
parent 68d0851552
commit 6df7c52e9e
4 changed files with 6 additions and 11 deletions

View file

@ -2,14 +2,11 @@ package main
import (
"context"
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"net/url"
"strconv"
"strings"
"time"
"golang.org/x/time/rate"

View file

@ -16,4 +16,3 @@ func (f *fakeST) GetUser(ctx context.Context, id int64) (*User, error) {
}
return &User{ID: id, ChapterID: f.chapterID, Department: f.dept}, nil
}

View file

@ -4,7 +4,6 @@ import (
"database/sql"
"errors"
"modernc.org/sqlite"
sqlite3 "modernc.org/sqlite/lib"
)