refactor: mover .go de tipos Go a functions/{domain}/ para compilación unificada

Los archivos .go de tipos ahora viven junto a las funciones en functions/{domain}/
(mismo paquete Go), resolviendo errores de compilación por tipos no encontrados
(Option, Pair, Result, etc.). Los .md de metadata permanecen en types/{domain}/
con file_path actualizado a functions/. Se elimina types.go duplicado de infra.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-28 23:23:00 +01:00
parent 528a16cd5a
commit 05444f74d3
56 changed files with 27 additions and 55 deletions
+10
View File
@@ -0,0 +1,10 @@
package cybersecurity
import "net"
// CIDRBlock represents a parsed CIDR network range.
type CIDRBlock struct {
Network *net.IPNet
Broadcast net.IP
Hosts int
}
+24
View File
@@ -0,0 +1,24 @@
package cybersecurity
// PortResult is a sum type for TCP port scan results.
type PortResult interface{ portResult() }
// PortOpen indicates the port accepted a connection.
type PortOpen struct {
Port int
Banner string
}
// PortClosed indicates the port refused the connection.
type PortClosed struct {
Port int
}
// PortFiltered indicates the port did not respond (timeout).
type PortFiltered struct {
Port int
}
func (PortOpen) portResult() {}
func (PortClosed) portResult() {}
func (PortFiltered) portResult() {}
+21
View File
@@ -0,0 +1,21 @@
package cybersecurity
// ThreatResult is a sum type for SQL injection detection results.
type ThreatResult interface{ threatResult() }
// Clean indicates no threat was detected.
type Clean struct{}
// Suspicious indicates a possible threat with a reason.
type Suspicious struct {
Reason string
}
// Malicious indicates a confirmed threat pattern.
type Malicious struct {
Pattern string
}
func (Clean) threatResult() {}
func (Suspicious) threatResult() {}
func (Malicious) threatResult() {}