Files
speckle-server/modules/core/services/commits.js
T
2020-07-17 20:39:23 +01:00

15 lines
333 B
JavaScript

'use strict'
const bcrypt = require( 'bcrypt' )
const crs = require( 'crypto-random-string' )
const appRoot = require( 'app-root-path' )
const knex = require( `${appRoot}/db/knex` )
const Refs = ( ) => knex( 'branches' )
const BranchCommits = ( ) => knex( 'branch_commits' )
module.exports = {
async createCommit( ) {
}
}