Documentation
¶
Overview ¶
Package techconferences allows you to find your next tech conference using the Open-source and crowd-sourced conference website https://confs.tech/
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Conference ¶
type Conference struct { Name string `json:"name"` City string `json:"city"` Country string `json:"country"` URL string `json:"url"` StartDate string `json:"startDate"` EndDate string `json:"endDate"` Twitter *string `json:"twitter,omitempty"` CfpURL *string `json:"cfpUrl,omitempty"` CfpEndDate *string `json:"cfpEndDate,omitempty"` }
Conference is the conference you might want to go to
type ConferenceType ¶
type ConferenceType int
ConferenceType is the type of conference you want to get the data for.
const ( // Android conference Android ConferenceType = iota // Clojure conference Clojure // CC++ conference CPP // CSS conference CSS // Datascience conference Data // DevOps conference DevOps // .Net conference DotNet // Elixer conference Elixer // General conference General // Golang conference Golang // GraphQL conference GraphQL // Groovy conference Groovy // iOS conference IOS // Java conference Java // JavaScript / Node.js conference JavaScript // Networking conference Networking // PHP conference PHP // Python conference Python // Ruby conference Ruby // Rust conference Rust // Scala conference Scala // Security conference Security // Technical Communications / Doc conference TechComm // UX conference UX )
func (ConferenceType) String ¶
func (conf ConferenceType) String() string
String translates the conference type to a valid string
type Conferences ¶
type Conferences []Conference
Conferences is an array of conferences
func GetConferences ¶
func GetConferences(confType ConferenceType, year int) (Conferences, error)
GetConferences gets the conferences for a particular type and year (like DevOps 2019) and will return a list of conferences or an error
Click to show internal directories.
Click to hide internal directories.