chore: Seperate Go modules into seperate directories
This is done to help potential dependents reduce download sizes and only download what they need.
This commit is contained in:
parent
eb33ec116e
commit
77792a82a6
10 changed files with 44 additions and 9 deletions
|
@ -3,7 +3,6 @@ package edidpatcher
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/charmbracelet/log"
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
|
@ -38,7 +37,7 @@ func PatchEDIDToBeSpecialized(edid []byte) ([]byte, error) {
|
|||
}
|
||||
|
||||
if newEDID[currentExtensionPosition+1] != 0x03 {
|
||||
log.Warn("Incompatible version detected for ANSI CTA data section in EDID")
|
||||
fmt.Println("WARN: Incompatible version detected for ANSI CTA data section in EDID")
|
||||
}
|
||||
|
||||
foundExtensionBase = currentExtensionPosition
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue