resume

package
v0.0.0-...-cf7d99a Latest Latest
Warning

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

Go to latest
Published: Aug 30, 2022 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Contact

type Contact struct {
	Email   string `yaml:"email"`
	Website string `yaml:"website"`
}

type Date

type Date struct {
	Start string `yaml:"start"`
	End   string `yaml:"end"`
}

type Education

type Education struct {
	Institution Institution `yaml:"institution"`
	Area        string      `yaml:"area"`
	Type        string      `yaml:"type"`
	Date        Date        `yaml:"date"`
	Summary     string      `yaml:"summary"`
	Highlights  []string    `yaml:"highlights"`
}

type Info

type Info struct {
	Position string `yaml:"position"`
	Summary  string `yaml:"summary"`
}

type Institution

type Institution struct {
	Name     string   `yaml:"name"`
	Website  string   `yaml:"website"`
	Location Location `yaml:"location"`
}

type Interest

type Interest struct {
	Name     string   `yaml:"name"`
	Date     Date     `yaml:"date"`
	Keywords []string `yaml:"keywords"`
	Summary  string   `yaml:"summary"`
}

type Location

type Location struct {
	City    string `yaml:"city"`
	Country string `yaml:"country"`
}

type ResumeInfo

type ResumeInfo struct {
	Name      string     `yaml:"name"`
	Info      Info       `yaml:"info"`
	Contact   Contact    `yaml:"contact"`
	Location  Location   `yaml:"location"`
	Social    []Social   `yaml:"social"`
	Skills    []Skill    `yaml:"skills"`
	Work      []Work     `yaml:"work"`
	Interests []Interest `yaml:"interests"`
}

func Resume

func Resume() *ResumeInfo

type Skill

type Skill struct {
	Name     string   `yaml:"name"`
	Level    string   `yaml:"level"`
	Keywords []string `yaml:"keywords"`
}

type Social

type Social struct {
	Network  string `yaml:"network"`
	Username string `yaml:"username"`
	URL      string `yaml:"url"`
}

type Work

type Work struct {
	Company    Institution `yaml:"company"`
	Position   string      `yaml:"position"`
	Date       Date        `yaml:"date"`
	Keywords   []string    `yaml:"keywords"`
	Summary    string      `yaml:"summary"`
	Highlights []string    `yaml:"highlights"`
}

Jump to

Keyboard shortcuts

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