Nick Xu

Results 2 issues of Nick Xu

Current default tag only effective in request However, in some cases, it's very useful, such as set a pre-defined response which means have no errors ![image](https://user-images.githubusercontent.com/58617692/234050264-89c388cf-7f67-4bc8-940f-b86391f5db7f.png)

stale

## TL;DR Introduce a modern, generic-friendly alternative to Go's traditional interface implementation check. Current idiom: ```go var _ SomeInterface = (*SomeStruct)(nil) ``` Proposed alternative: ```go var _ = lo.Implement[SomeInterface](&SomeStruct{}) ```...