enable gitea actions

This commit is contained in:
Aleksandr Trushkin
2024-02-02 18:24:00 +03:00
parent 3754441492
commit 91b0dd5c4f
9 changed files with 124 additions and 44 deletions

View File

@ -1,6 +1,3 @@
//go:build encon
// +build encon
package crypto
import (

View File

@ -1,10 +0,0 @@
//go:build !encon
// +build !encon
package crypto
import "git.loyso.art/frx/eway/internal/entity"
func Decrypt(hexedcipher string) (plaintext string, err error) {
return "", entity.SimpleError("this feature turned off")
}