Skip to content

Commit 902538c

Browse files
committed
fix: remove unneeded comments
1 parent 4925592 commit 902538c

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

codersdk/organizations.go

+3-8
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,14 @@ type OrganizationMemberWithUserData struct {
8282
}
8383

8484
type PaginatedMembersRequest struct {
85-
//
8685
OrganizationID uuid.UUID `table:"organization id" json:"organization_id" format:"uuid"`
87-
//
88-
Limit int `json:"limit,omitempty"`
89-
//
90-
Offset int `json:"offset,omitempty"`
86+
Limit int `json:"limit,omitempty"`
87+
Offset int `json:"offset,omitempty"`
9188
}
9289

9390
type PaginatedMembersResponse struct {
94-
//
9591
Members []OrganizationMemberWithUserData
96-
//
97-
Count int `json:"count"`
92+
Count int `json:"count"`
9893
}
9994

10095
type CreateOrganizationRequest struct {

0 commit comments

Comments
 (0)