UNPKG

tethysfaceid

Version:

10 lines (7 loc) 307 B
import Axios from 'axios'; import { ACCESS_KEY, FACE_COMPARE, LiCENCE_KEY, LOGIN } from 'common/apiConstants'; import { getConfig } from 'common/utils'; export const logInUser = ({ username, password }) => { const jsonData = { username, password }; return Axios.post(LOGIN, jsonData, getConfig()); };