10 lines
135 B
Go
10 lines
135 B
Go
package actions
|
|
|
|
import (
|
|
"github.com/d3m0k1d/BanForge/internal/config"
|
|
)
|
|
|
|
func SendEmail(action config.Action) error {
|
|
return nil
|
|
}
|