File: a.go

package info (click to toggle)
golang-github-google-go-github 60.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,700 kB
  • sloc: sh: 111; makefile: 5
file content (33 lines) | stat: -rw-r--r-- 797 bytes parent folder | download
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() {}