1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
package github
type AService struct{}
// Get gets an A
//
//meta:operation GET /a/{non-canonical-id}
func (s *AService) Get() {}
// Undocumented uses an undocumented operation
//
//meta:operation GET /undocumented/{undocumented_id}
func (s *AService) Undocumented() {}
// OutdatedLinks has links that are outdated or wrong
//
// GitHub API docs: https://docs.github.com/rest/a/a#get-a
// GitHub API docs: https://example.com
// Note: Undocumented uses the undocumented GitHub API endpoint "GET /undocumented/{undocumented_id}".
//
//meta:operation post a/{a_id}
func (s *AService) OutdatedLinks() {}
//meta:operation GET /a/{a_id}
func (s *AService) Uncommented() {}
func (s *AService) unexported() {}
func NotAMethod() {}
type internalService struct{}
func (i *internalService) Get() {}
|