generic

package
v0.0.0-...-ec844c3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 25, 2026 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

Copyright 2025 Specter Ops, Inc.

Licensed under the Apache License, Version 2.0 you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

SPDX-License-Identifier: Apache-2.0

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AssertDatabaseGraph

func AssertDatabaseGraph(t *testing.T, ctx context.Context, db graph.Database, expected *Graph)

func WriteGraphToDatabase

func WriteGraphToDatabase(db graph.Database, g *Graph) error

Types

type Edge

type Edge struct {
	Start      Terminal       `json:"start"`
	End        Terminal       `json:"end"`
	Kind       string         `json:"kind"`
	Properties map[string]any `json:"properties"`
}

type GenericObject

type GenericObject struct {
	Graph    Graph    `json:"graph"`
	Metadata Metadata `json:"metadata"`
}

type Graph

type Graph struct {
	Nodes []Node `json:"nodes"`
	Edges []Edge `json:"edges"`
}

func LoadGraphFromFile

func LoadGraphFromFile(fSys fs.FS, path string) (Graph, error)

type Metadata

type Metadata struct {
	SourceKind string `json:"source_kind"`
}

type Node

type Node struct {
	ID         string         `json:"id"`
	Kinds      []string       `json:"kinds"`
	Properties map[string]any `json:"properties"`
}

type Terminal

type Terminal struct {
	MatchBy string `json:"match_by"`
	Value   string `json:"value"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL