package
Version:
v0.0.0-...-a2e4361
Opens a new window with list of versions in this module.
Published: Nov 6, 2019
License: Apache-2.0
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type CSVConfig struct {
WithLabel bool `yaml:"withLabel"`
}
type Edge struct {
Name string `yaml:"name"`
WithRanking bool `yaml:"withRanking"`
Props []Prop `yaml:"props"`
}
type ErrConfig struct {
FailDataPath string `yaml:"failDataPath"`
LogPath string `yaml:"logPath"`
}
type NebulaClientConnection struct {
User string `yaml:"user"`
Password string `yaml:"password"`
Address string `yaml:"address"`
}
type NebulaClientSettings struct {
Concurrency int `yaml:"concurrency"`
Connection NebulaClientConnection `yaml:"connection"`
}
type Prop struct {
Name string `yaml:"name"`
Type string `yaml:"type"`
}
type Schema struct {
Space string `yaml:"space"`
Type string `yaml:"type"`
Edge Edge `yaml:"edge"`
Vertex Vertex `yaml:"vertex"`
}
type Tag struct {
Name string `yaml:"name"`
Props []Prop `yaml:"props"`
}
type Vertex struct {
Tags []Tag `yaml:"tags"`
}
type YAMLConfig struct {
Version string `yaml:"version"`
Description string `yaml:"description"`
NebulaClientSettings NebulaClientSettings `yaml:"settings"`
Files []File `yaml:"files"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.