Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoModule

import type { GoModule } from "https://googleapis.deno.dev/v1/artifactregistry:v1.ts";

GoModule represents a Go module.

interface GoModule {
readonly createTime?: Date;
name?: string;
readonly updateTime?: Date;
version?: string;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The time when the Go module is created.

§
name?: string
[src]

The resource name of a Go module.

§
readonly updateTime?: Date
[src]

Output only. The time when the Go module is updated.

§
version?: string
[src]

The version of the Go module. Must be a valid canonical version as defined in https://go.dev/ref/mod#glos-canonical-version.