Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

gleam / hexpm / proto / names.proto
435 B 21 lines
1// SPDX-License-Identifier: Apache-2.0 2// SPDX-FileCopyrightText: 2014 The Hex Team 3 4syntax = "proto2"; 5 6package names; 7 8message Names { 9 // All packages in the repository 10 repeated Package packages = 1; 11 // Name of repository 12 required string repository = 2; 13} 14 15message Package { 16 // Package name 17 required string name = 1; 18 19 // If set, the name of the package repository (NEVER USED, DEPRECATED) 20 // string repository = 2; 21}