mirror of
https://github.com/openstf/stf
synced 2025-10-04 02:09:32 +02:00
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
var express = require('express')
|
|
|
|
var pathutil = require('../util/pathutil')
|
|
|
|
module.exports = function() {
|
|
return express.static(
|
|
pathutil.root('node_modules/stf-device-db/data/small'))
|
|
}
|