first commit

This commit is contained in:
meninjar
2026-04-14 01:23:34 +00:00
commit edfaa886ff
443 changed files with 1245931 additions and 0 deletions

No files matched your search

+10
View File
@@ -0,0 +1,10 @@
package kfa
// KFASearchParams menampung parameter pencarian produk KFA
type KFASearchParams struct {
Page int `form:"page,default=1"`
Size int `form:"size,default=10"`
ProductType string `form:"product_type"` // Contoh: farmasi, alkes
Keyword string `form:"keyword"` // Kata kunci pencarian produk (jika didukung KFA)
From string `form:"from_"` // Query param from_ (digunakan untuk memfilter tanggal/waktu spesifik)
}