mirror of
https://github.com/pheralb/svgl.git
synced 2025-02-06 15:17:58 +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);
|
||
|
}
|