mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-13 08:46:56 +08:00
7 lines
132 B
JavaScript
7 lines
132 B
JavaScript
import db from "data/icons";
|
|
|
|
// 📦 Show all content ->
|
|
export default function handler(req, res) {
|
|
res.status(200).json(db);
|
|
}
|