6 lines
325 B
Plaintext
6 lines
325 B
Plaintext
---
|
|
description: This rule enforces the use of Go's standard library for API development, focusing on idiomatic and efficient code.
|
|
globs: /*/**/*_api.go
|
|
---
|
|
- Use the standard library's net/http package for API development.
|
|
- Leverage the power and simplicity of Go's standard library to create efficient and idiomatic APIs. |