Skip to content
Snippets Groups Projects
Select Git revision
  • 04d241f266bb39a5b65e54d9924887571d625b96
  • main default protected
  • development
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
11 results

IdentityMaker.swift

Blame
  • params.go 796 B
    ///////////////////////////////////////////////////////////////////////////////
    // Copyright © 2020 xx network SEZC                                          //
    //                                                                           //
    // Use of this source code is governed by a license that can be found in the //
    // LICENSE file                                                              //
    ///////////////////////////////////////////////////////////////////////////////
    
    package api
    
    import (
    	"gitlab.com/elixxir/client/cmix"
    	"gitlab.com/elixxir/client/e2e/ratchet/partner/session"
    )
    
    type Params struct {
    	CMix    cmix.Params
    	Session session.Params
    }
    
    func GetDefaultParams() Params {
    	return Params{
    		CMix:    cmix.GetDefaultParams(),
    		Session: session.GetDefaultParams(),
    	}
    }