mirror of
https://github.com/siderolabs/omni.git
synced 2026-01-21 10:51:14 +01:00
Omni is source-available under BUSL. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com> Co-Authored-By: Artem Chernyshev <artem.chernyshev@talos-systems.com> Co-Authored-By: Utku Ozdemir <utku.ozdemir@siderolabs.com> Co-Authored-By: Dmitriy Matrenichev <dmitry.matrenichev@siderolabs.com> Co-Authored-By: Philipp Sauter <philipp.sauter@siderolabs.com> Co-Authored-By: Noel Georgi <git@frezbo.dev> Co-Authored-By: evgeniybryzh <evgeniybryzh@gmail.com> Co-Authored-By: Tim Jones <tim.jones@siderolabs.com> Co-Authored-By: Andrew Rynhard <andrew@rynhard.io> Co-Authored-By: Spencer Smith <spencer.smith@talos-systems.com> Co-Authored-By: Christian Rolland <christian.rolland@siderolabs.com> Co-Authored-By: Gerard de Leeuw <gdeleeuw@leeuwit.nl> Co-Authored-By: Steve Francis <67986293+steverfrancis@users.noreply.github.com> Co-Authored-By: Volodymyr Mazurets <volodymyrmazureets@gmail.com>
26 lines
765 B
Go
26 lines
765 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
// Package runtime contains public interfaces used in Omni frontend runtime.
|
|
package runtime
|
|
|
|
// Matcher is implemented by all types which can traverse themselves in search for specific string.
|
|
type Matcher interface {
|
|
Match(string) bool
|
|
}
|
|
|
|
// Fielder is implemented by all types which can traverse themselves in search for specific field.
|
|
type Fielder interface {
|
|
Field(string) (string, bool)
|
|
}
|
|
|
|
// ListItem is a wrapper for the list item.
|
|
type ListItem interface {
|
|
Matcher
|
|
ID() string
|
|
Namespace() string
|
|
Unwrap() any
|
|
Field(name string) (string, bool)
|
|
}
|