Make isText private

This commit is contained in:
2024-10-16 18:31:24 +02:00
parent f8c36a7045
commit f11dee630d
3 changed files with 3 additions and 3 deletions

View File

@@ -6,8 +6,8 @@ import (
)
type Text interface {
isText() bool
Check() error
IsText() bool
}
func NewText(textType, content string) (Text, error) {