Simplified file structure.

This commit is contained in:
Alexander Andreev 2023-08-12 22:29:01 +04:00
parent ce1df27e3a
commit dede76d13e
Signed by: Arav
GPG Key ID: D22A817D95815393
6 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ import (
"testing"
"time"
"git.arav.su/Arav/justcaptcha/pkg/dwcaptcha"
"git.arav.su/Arav/justcaptcha/dwcaptcha"
)
const expiry = 10 * time.Minute

View File

@ -5,7 +5,7 @@ import (
"math/rand"
"time"
"git.arav.su/Arav/justcaptcha/pkg/captcha"
captcha "git.arav.su/Arav/justcaptcha"
"github.com/fogleman/gg"
)

View File

@ -5,7 +5,7 @@ import (
"sync"
"time"
"git.arav.su/Arav/justcaptcha/pkg/captcha"
captcha "git.arav.su/Arav/justcaptcha"
)
// InMemoryDB implementation that lives in a memory (map).

View File

@ -4,9 +4,9 @@ import (
"testing"
"time"
"git.arav.su/Arav/justcaptcha/pkg/captcha"
"git.arav.su/Arav/justcaptcha/pkg/captcha/inmemdb"
"git.arav.su/Arav/justcaptcha/pkg/dwcaptcha"
captcha "git.arav.su/Arav/justcaptcha"
"git.arav.su/Arav/justcaptcha/dwcaptcha"
"git.arav.su/Arav/justcaptcha/inmemdb"
)
const expiry = 10 * time.Minute