// Copyright 2025 WIT.COM Inc Licensed GPL 3.0 package gitpb // rm this is junk func (pb *Repos) PrintMissingTable() { t := pb.NewTable("missing repos table") t.NewUuid() var col *RepoFunc col = t.AddNamespace() col.Width = 45 col = t.AddURL() col.Width = -1 /* col = t.AddStringFunc("hash", func(r *Repo) string { if r.Tags == nil { return "nil" } if r.Tags.Master == nil { return "nil" } return r.Tags.Master.Hash }) col.Width = 6 */ t.PrintTable() }