You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
612 B
19 lines
612 B
package version1
|
|
|
|
import (
|
|
"key_performance_indicators/api/version1/departmentseting/departmentpc"
|
|
"key_performance_indicators/api/version1/departmentseting/departmentweb"
|
|
"key_performance_indicators/api/version1/honoraryArchives"
|
|
"key_performance_indicators/api/version1/postseting/postpc"
|
|
"key_performance_indicators/api/version1/postseting/postweb"
|
|
)
|
|
|
|
type ApiEntry struct {
|
|
HonorsApi honoraryArchives.ApiMethod
|
|
PostPcApi postpc.ApiMethod
|
|
PostWebApi postweb.ApiMethod
|
|
DeparmentPcApi departmentpc.ApiMethod
|
|
DeparmentWebApi departmentweb.ApiMethod
|
|
}
|
|
|
|
var AppApiEntry = new(ApiEntry)
|
|
|