bioweb  0.09.92
C++/Python(django)/JavaScript(angularJS) framework
views.py
Go to the documentation of this file.
1 ## @file version/views.py
2 # @brief server version interface to client
3 
4 """
5 version interface module. Return database version, database connecting strings and application build version
6 """
7 
8 import datetime
9 import models
10 
11 def get(params):
12  """versions"""
13  return {
14  "paramsVer" : 1,
15  "server": models.getVersionString(),
16  "database": models.getDBVersionString(),
17  }