porting all github actions from bluesky-social/indigo to tangled CI
at main 310 B view raw
1package util 2 3import "context" 4 5type FakeKeyManager struct { 6} 7 8func (km *FakeKeyManager) VerifyUserSignature(context.Context, string, []byte, []byte) error { 9 return nil 10} 11 12func (km *FakeKeyManager) SignForUser(ctx context.Context, did string, msg []byte) ([]byte, error) { 13 return []byte("signature"), nil 14}