Created
December 10, 2021 04:58
-
-
Save manakuro/6dbba333b41205e99cc48fd410cb739d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type User interface { | |
Get(ctx context.Context, id *model.ID) (*model.User, error) | |
List(ctx context.Context, after *model.Cursor, first *int, before *model.Cursor, last *int) (*model.UserConnection, error) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment