This repository has no description
0

Configure Feed

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

core / api / tangled / sitereleaseDomain.go
906 B 30 lines
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package tangled 4 5// schema: org.tangled.temp.site.releaseDomain 6 7import ( 8 "context" 9 10 "github.com/bluesky-social/indigo/lex/util" 11) 12 13const ( 14 TempSiteReleaseDomainNSID = "org.tangled.temp.site.releaseDomain" 15) 16 17// TempSiteReleaseDomain_Input is the input argument to a org.tangled.temp.site.releaseDomain call. 18type TempSiteReleaseDomain_Input struct { 19 // domain: Full domain to release (must match the user's active claim). 20 Domain string `json:"domain" cborgen:"domain"` 21} 22 23// TempSiteReleaseDomain calls the XRPC method "org.tangled.temp.site.releaseDomain". 24func TempSiteReleaseDomain(ctx context.Context, c util.LexClient, input *TempSiteReleaseDomain_Input) error { 25 if err := c.LexDo(ctx, util.Procedure, "application/json", "org.tangled.temp.site.releaseDomain", nil, input, nil); err != nil { 26 return err 27 } 28 29 return nil 30}