// Copyright 2024 https://nzv.gitlab.io. All rights
// reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE
// file.
//go:build linux
// Package other only contains a single struct
package other
import "net/url"
// Links represents a collection of URLs
type Links struct {
GitLab *url.URL // Projects
GitHub *url.URL // GitLab port
Linkedin *url.URL // Professional space
}